Skip to content

Commit

Permalink
use test_args in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
m-fila committed Aug 23, 2024
1 parent 3d40b23 commit 13b546b
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,20 @@ concurrency:
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} (${{matrix.test_args}})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
version:
- '1.10'
- '1'
os:
- ubuntu-latest
arch:
- x64
test_args:
- 'no-fast'
- 'all'
steps:
- uses: actions/checkout@v4
with:
Expand All @@ -34,4 +36,6 @@ jobs:
arch: ${{ matrix.arch }}
- uses: julia-actions/cache@v2
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
- uses: julia-actions/julia-runtest@v1
with:
test_args: ${{matrix.test_args}}

0 comments on commit 13b546b

Please sign in to comment.