From 75d94ab5a0371fe88e0c4eeedaf549916cf87305 Mon Sep 17 00:00:00 2001 From: Mateusz Jakub Fila Date: Fri, 9 Aug 2024 10:00:25 +0200 Subject: [PATCH] use test_args in CI --- .github/workflows/test.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2499ed5..5121f2d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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: @@ -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 \ No newline at end of file + - uses: julia-actions/julia-runtest@v1 + with: + test_args: ${{matrix.test_args}}