Skip to content

documentation build fix #144

documentation build fix

documentation build fix #144

Workflow file for this run

name: Tests
permissions:
actions: write
contents: read
on:
push:
branches:
- master
tags: '*'
pull_request:
concurrency:
# Skip intermediate builds: always.
# Cancel intermediate builds: only if it is a pull request build.
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
version:
- '1.11'
os:
- ubuntu-latest
arch:
- x64
steps:
# This is from the GLMakie github action
# - run: sudo apt-get update && sudo apt-get install -y xorg-dev mesa-utils xvfb libgl1 freeglut3-dev libxrandr-dev libxinerama-dev libxcursor-dev libxi-dev libxext-dev xsettingsd x11-xserver-utils
- uses: actions/checkout@v3
- uses: awalsh128/cache-apt-pkgs-action@latest
with:
packages: xorg-dev mesa-utils xvfb libgl1 freeglut3-dev libxrandr-dev libxinerama-dev libxcursor-dev libxi-dev libxext-dev xsettingsd x11-xserver-utils
- uses: julia-actions/setup-julia@latest
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: julia-actions/cache@v1
with:
# cache-name: master-tests
# WARNING: cache-registries is actually slower for Windows runners
cache-registries: "true"
# WARNING: cache-compiled can break with certain choices of OS and architecture.
# see https://github.com/julia-actions/cache/issues/11
cache-compiled: "true"
- uses: julia-actions/julia-buildpkg@latest
- uses: julia-actions/julia-runtest@latest
env:
DISPLAY: :0
with:
prefix: xvfb-run
- uses: julia-actions/julia-processcoverage@latest
- uses: codecov/codecov-action@v3
with:
files: lcov.info