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 5f4a953 commit 9085c36Copy full SHA for 9085c36
.github/workflows/CI.yml
.github/workflows/Tests.yml
@@ -0,0 +1,31 @@
1
+name: "Tests"
2
+
3
+on:
4
+ pull_request:
5
+ branches:
6
+ - master
7
+ paths-ignore:
8
+ - 'docs/**'
9
+ push:
10
11
12
13
14
15
+concurrency:
16
+ group: ${{ github.workflow }}-${{ github.ref }}
17
+ cancel-in-progress: ${{ github.ref_name != github.event.repository.default_branch || github.ref != 'refs/tags/v*' }}
18
19
+jobs:
20
+ tests:
21
+ name: "Tests"
22
+ strategy:
23
+ fail-fast: false
24
+ matrix:
25
+ version:
26
+ - "1"
27
+ - "1.6"
28
+ uses: "SciML/.github/.github/workflows/tests.yml@v1"
29
+ with:
30
+ julia-version: "${{ matrix.version }}"
31
+ secrets: "inherit"
0 commit comments