Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
Signed-off-by: Anant Thazhemadam <anant.thazhemadam@gmail.com>
  • Loading branch information
thazhemadam committed Apr 23, 2024
1 parent ef37d2b commit e6a6199
Showing 1 changed file with 18 additions and 2 deletions.
20 changes: 18 additions & 2 deletions .github/workflows/Tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,21 +7,37 @@ on:
- 'at/reusable-ci-workflows'
pull_request:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref_name != github.event.repository.default_branch || github.ref != 'refs/tags/v*' }}

jobs:
tests:
name: "Tests"
strategy:
fail-fast: false
matrix:
version:
- '1'
arch:
- x64
- x86
group:
- Interface
- Integrators
- Regression
uses: "SciML/.github/.github/workflows/tests.yml@test"
include:
- coverage: false
- version: '1'
arch: x64
coverage: true
exclude: # test 32bit only with Julia 1 but not LTS
- version: '1.6'
arch: x86
uses: "SciML/.github/.github/workflows/tests.yml@v1"
with:
group: ${{ matrix.group }}
coverage: ${{ matrix.arch == '64' }}
julia-version: '1'
julia-arch: ${{ matrix.arch }}
coverage: ${{ matrix.coverage }}
secrets: "inherit"

0 comments on commit e6a6199

Please sign in to comment.