Update Julia compat to 1.10 and update CI setup #287
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | ||
on: | ||
push: | ||
branches: [master] | ||
tags: ["*"] | ||
pull_request: | ||
jobs: | ||
test: | ||
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ (matrix.arch == '') && runner.arch || matrix.arch }} - ${{ github.event_name }} | ||
Check failure on line 9 in .github/workflows/ci.yml GitHub Actions / CIInvalid workflow file
|
||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
version: | ||
- 'min' | ||
- 'lts' | ||
- '1' | ||
- 'pre' | ||
os: | ||
- ubuntu-latest # Apple Silicon | ||
- macOS-latest | ||
- windows-latest | ||
arch: | ||
- '' | ||
include: | ||
- os: ubuntu-latest | ||
arch: x86 | ||
version: 1 | ||
- os: windows-latest | ||
arch: x86 | ||
version: 1 | ||
- os: macOS-13 # Intel | ||
arch: '' | ||
version: 1 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: julia-actions/setup-julia@v2 | ||
with: | ||
version: ${{ matrix.version }} | ||
arch: ${{ (matrix.arch == '') && runner.arch || matrix.arch }} | ||
- uses: julia-actions/cache@v2 | ||
- uses: julia-actions/julia-buildpkg@v1 | ||
- uses: julia-actions/julia-runtest@v1 | ||
- uses: julia-actions/julia-processcoverage@v1 | ||
- uses: codecov/codecov-action@v5 | ||
with: | ||
files: lcov.info | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
fail_ci_if_error: true |