Skip to content

v2.2.0

v2.2.0 #20

Workflow file for this run

name: Test
on:
push:
branches:
- master
pull_request:
# needed to allow julia-actions/cache to delete old caches that it has created
permissions:
actions: write
contents: read
jobs:
test:
if: "!contains(github.event.head_commit.message, 'skip 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.10'
- 'nightly'
julia-arch:
- x64
# - x86
os:
- ubuntu-latest
- windows-latest
- macOS-latest
# exclude:
# - os: macOS-latest
# julia-arch: x86
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.julia-version }}
arch: ${{ matrix.julia-arch }}
- uses: julia-actions/cache@v1
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
# with:
# annotate: true
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v3
with:
file: ./lcov.info
token: ${{ secrets.CODECOV_TOKEN }}