We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8206264 commit 4e3d944Copy full SHA for 4e3d944
.github/workflows/CI.yml
.github/workflows/Tests.yml
@@ -0,0 +1,27 @@
1
+name: "Tests"
2
+
3
+on:
4
+ pull_request:
5
+ branches:
6
+ - main
7
+ push:
8
9
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