Skip to content

Commit

Permalink
Test min, lts and 1 in CI (#478)
Browse files Browse the repository at this point in the history
* Test `min`, `lts` and `1` in CI

* Improve job name
  • Loading branch information
devmotion authored Oct 28, 2024
1 parent 92be507 commit 7f42b47
Showing 1 changed file with 9 additions and 13 deletions.
22 changes: 9 additions & 13 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,37 +8,33 @@ on:

jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }}
name: Julia ${{ matrix.version }} - ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
version:
- '1.6'
- 'min'
- 'lts'
- '1'
os:
- ubuntu-latest
- macOS-latest
- windows-latest
arch:
- x64
exclude:
- os: macOS-latest # Apple Silicon
version: 'min'
include:
- os: macOS-13
arch: x64
version: 1
- os: macOS-latest
arch: aarch64
version: 1

- os: macOS-13 # Intel
version: 'min'
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: julia-actions/cache@v2
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
continue-on-error: ${{ matrix.version == 'nightly' }}
- uses: julia-actions/julia-processcoverage@v1
continue-on-error: true
- uses: codecov/codecov-action@v4
Expand Down

0 comments on commit 7f42b47

Please sign in to comment.