Skip to content
This repository was archived by the owner on Sep 9, 2024. It is now read-only.

Commit e210ce4

Browse files
committed
ci: update tests workflow to use centralised reusable workflow
1 parent a08e969 commit e210ce4

File tree

2 files changed

+27
-41
lines changed

2 files changed

+27
-41
lines changed

.github/workflows/CI.yml

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

.github/workflows/Tests.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
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+
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)