Skip to content

support Makie 0.20 (#12) #31

support Makie 0.20 (#12)

support Makie 0.20 (#12) #31

Workflow file for this run

name: CI
on:
push:
branches: "main"
tags: ["*"]
pull_request:
release:
jobs:
test:
name: Julia ${{ matrix.julia-version }} - ${{ matrix.os }} - ${{ matrix.julia-arch }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
julia-version:
#- "1.6"
- "1"
#- "nightly"
os:
- ubuntu-20.04
#- macos-latest
#- windows-latest
julia-arch:
- x64
#- x86
include:
- os: ubuntu-20.04
prefix: xvfb-run
# 32-bit Julia binaries are not available on macOS
exclude:
- os: macOS-latest
julia-arch: x86
steps:
- uses: actions/checkout@v3
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.julia-version }}
arch: ${{ matrix.julia-arch }}
- name: Cache artifacts
uses: actions/cache@v3
env:
cache-name: cache-artifacts
with:
path: ~/.julia/artifacts
key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
restore-keys: |
${{ runner.os }}-test-${{ env.cache-name }}-
${{ runner.os }}-test-
${{ runner.os }}-
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@latest
with:
prefix: ${{ matrix.prefix }}
- uses: julia-actions/julia-processcoverage@latest
if: startsWith(matrix.os, 'ubuntu')
with:
directories: src
- uses: codecov/codecov-action@v3
if: startsWith(matrix.os, 'ubuntu')
with:
file: lcov.info