Skip to content

Commit 22ecfed

Browse files
committed
ci: update tests workflow to use centralised reusable workflow
1 parent c1a4184 commit 22ecfed

File tree

2 files changed

+19
-40
lines changed

2 files changed

+19
-40
lines changed

.github/workflows/CI.yml

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

.github/workflows/Tests.yml

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

0 commit comments

Comments
 (0)