Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
Signed-off-by: Anant Thazhemadam <[email protected]>
  • Loading branch information
thazhemadam committed Apr 19, 2024
1 parent 4e580cd commit ef37d2b
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
push:
branches:
- master
- 'at/reusable-ci-workflows'
pull_request:

concurrency:
Expand All @@ -14,6 +15,7 @@ concurrency:

jobs:
test:
name: "${{ github.workflow }}-${{ github.ref }}"
continue-on-error: ${{ matrix.version == 'nightly' }}
runs-on: ${{ matrix.os }}
strategy:
Expand Down
27 changes: 27 additions & 0 deletions .github/workflows/Tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: "Run Tests"

on:
push:
branches:
- master
- 'at/reusable-ci-workflows'
pull_request:

jobs:
tests:
name: "Tests"
strategy:
fail-fast: false
matrix:
arch:
- x64
- x86
group:
- Interface
- Integrators
- Regression
uses: "SciML/.github/.github/workflows/tests.yml@test"
with:
group: ${{ matrix.group }}
coverage: ${{ matrix.arch == '64' }}
secrets: "inherit"

0 comments on commit ef37d2b

Please sign in to comment.