Skip to content

Commit 2d5d33f

Browse files
committed
ci: update the tests workflow to use the centralised reusable workflow
1 parent cb875c6 commit 2d5d33f

File tree

2 files changed

+24
-87
lines changed

2 files changed

+24
-87
lines changed

.github/workflows/CI.yml

Lines changed: 0 additions & 87 deletions
This file was deleted.

.github/workflows/Tests.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: "Tests"
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- main
7+
- 'release-'
8+
paths-ignore:
9+
- 'docs/**'
10+
push:
11+
branches:
12+
- main
13+
paths-ignore:
14+
- 'docs/**'
15+
16+
concurrency:
17+
group: ${{ github.workflow }}-${{ github.ref }}
18+
cancel-in-progress: ${{ github.ref_name != github.event.repository.default_branch || github.ref != 'refs/tags/v*' }}
19+
20+
jobs:
21+
tests:
22+
name: "Tests"
23+
uses: "SciML/.github/.github/workflows/tests.yml@v1"
24+
secrets: "inherit"

0 commit comments

Comments
 (0)