Skip to content

Commit a67936a

Browse files
committed
ci: update tests workflow to use centralised reusable workflow
1 parent 3935b7a commit a67936a

File tree

2 files changed

+34
-46
lines changed

2 files changed

+34
-46
lines changed

.github/workflows/CI.yml

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

.github/workflows/Tests.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: "Tests"
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- master
7+
paths-ignore:
8+
- 'docs/**'
9+
push:
10+
branches:
11+
- master
12+
paths-ignore:
13+
- 'docs/**'
14+
schedule:
15+
- cron: '30 12 * * 6'
16+
17+
concurrency:
18+
group: ${{ github.workflow }}-${{ github.ref }}
19+
cancel-in-progress: ${{ github.ref_name != github.event.repository.default_branch || github.ref != 'refs/tags/v*' }}
20+
21+
jobs:
22+
tests:
23+
name: "Tests"
24+
strategy:
25+
fail-fast: false
26+
matrix:
27+
os:
28+
- "ubuntu-latest"
29+
- "macos-latest"
30+
- "windows-latest"
31+
uses: "SciML/.github/.github/workflows/tests.yml@v1"
32+
with:
33+
os: "${{ matrix.os }}"
34+
secrets: "inherit"

0 commit comments

Comments
 (0)