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 3935b7a commit a67936aCopy full SHA for a67936a
.github/workflows/CI.yml
.github/workflows/Tests.yml
@@ -0,0 +1,34 @@
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
+ schedule:
15
+ - cron: '30 12 * * 6'
16
17
+concurrency:
18
+ group: ${{ github.workflow }}-${{ github.ref }}
19
+ cancel-in-progress: ${{ github.ref_name != github.event.repository.default_branch || github.ref != 'refs/tags/v*' }}
20
21
+jobs:
22
+ tests:
23
+ name: "Tests"
24
+ strategy:
25
+ fail-fast: false
26
+ matrix:
27
+ os:
28
+ - "ubuntu-latest"
29
+ - "macos-latest"
30
+ - "windows-latest"
31
+ uses: "SciML/.github/.github/workflows/tests.yml@v1"
32
+ with:
33
+ os: "${{ matrix.os }}"
34
+ secrets: "inherit"
0 commit comments