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 cb875c6 commit 2d5d33fCopy full SHA for 2d5d33f
.github/workflows/CI.yml
.github/workflows/Tests.yml
@@ -0,0 +1,24 @@
1
+name: "Tests"
2
+
3
+on:
4
+ pull_request:
5
+ branches:
6
+ - main
7
+ - 'release-'
8
+ paths-ignore:
9
+ - 'docs/**'
10
+ push:
11
12
13
14
15
16
+concurrency:
17
+ group: ${{ github.workflow }}-${{ github.ref }}
18
+ cancel-in-progress: ${{ github.ref_name != github.event.repository.default_branch || github.ref != 'refs/tags/v*' }}
19
20
+jobs:
21
+ tests:
22
+ name: "Tests"
23
+ uses: "SciML/.github/.github/workflows/tests.yml@v1"
24
+ secrets: "inherit"
0 commit comments