Skip to content

Commit 4e3d944

Browse files
committed
ci: update tests workflow to use centralised reusable workflow
1 parent 8206264 commit 4e3d944

File tree

2 files changed

+27
-103
lines changed

2 files changed

+27
-103
lines changed

.github/workflows/CI.yml

-103
This file was deleted.

.github/workflows/Tests.yml

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: "Tests"
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- main
7+
push:
8+
branches:
9+
- main
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+
strategy:
19+
fail-fast: false
20+
matrix:
21+
version:
22+
- "1"
23+
- "1.6"
24+
uses: "SciML/.github/.github/workflows/tests.yml@v1"
25+
with:
26+
julia-version: "${{ matrix.version }}"
27+
secrets: "inherit"

0 commit comments

Comments
 (0)