Skip to content

Commit

Permalink
use test args in CI tests workflow (#33)
Browse files Browse the repository at this point in the history
* use test_args in CI

* use runtest main until a new tag supporting arguments is added

* add comment as reminder
  • Loading branch information
m-fila authored Sep 20, 2024
1 parent d677840 commit 11449b8
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 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,7 @@ jobs:
arch: ${{ matrix.arch }}
- uses: julia-actions/cache@v2
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
# change to julia-actions/julia-runtest@v1.11 once it's available
- uses: julia-actions/julia-runtest@main
with:
test_args: ${{matrix.test_args}}

0 comments on commit 11449b8

Please sign in to comment.