File tree Expand file tree Collapse file tree 2 files changed +31
-5
lines changed Expand file tree Collapse file tree 2 files changed +31
-5
lines changed Original file line number Diff line number Diff line change 4
4
branches : [master, main]
5
5
tags : ["*"]
6
6
pull_request :
7
+
8
+ concurrency :
9
+ # group by workflow and ref; the last slightly strange component ensures that for pull
10
+ # requests, we limit to 1 concurrent job, but for the master branch we don't
11
+ group : ${{ github.workflow }}-${{ github.ref }}-${{ (github.ref != 'refs/heads/master' && github.ref != 'refs/heads/main') || github.run_number }}
12
+ # Cancel intermediate builds, but only if it is a pull request build.
13
+ cancel-in-progress : ${{ startsWith(github.ref, 'refs/pull/') }}
14
+
7
15
env :
8
16
PYTHON : ~
9
17
jobs :
Original file line number Diff line number Diff line change 4
4
branches : [master, main]
5
5
tags : ["*"]
6
6
pull_request :
7
+
8
+ concurrency :
9
+ # group by workflow and ref; the last slightly strange component ensures that for pull
10
+ # requests, we limit to 1 concurrent job, but for the master branch we don't
11
+ group : ${{ github.workflow }}-${{ github.ref }}-${{ (github.ref != 'refs/heads/master' && github.ref != 'refs/heads/main') || github.run_number }}
12
+ # Cancel intermediate builds, but only if it is a pull request build.
13
+ cancel-in-progress : ${{ startsWith(github.ref, 'refs/pull/') }}
14
+
7
15
env :
8
16
PYTHON : ~
9
17
jobs :
@@ -14,18 +22,28 @@ jobs:
14
22
fail-fast : false
15
23
matrix :
16
24
version :
17
- - ' 1.6'
18
- - ' 1.7'
19
- - ' 1.8'
20
- - ' 1.9'
21
- - ' 1.10'
22
25
- ' 1'
26
+ - ' 1.10'
23
27
os :
24
28
- ubuntu-latest
25
29
threads :
26
30
- ' 1'
31
+ - ' 5'
27
32
arch :
28
33
- x64
34
+ include :
35
+ - arch : aarch64
36
+ os : macos-latest
37
+ version : ' 1'
38
+ threads : ' 1'
39
+ - arch : x64
40
+ os : macos-latest
41
+ version : ' 1'
42
+ threads : ' 1'
43
+ - arch : x64
44
+ os : windows-latest
45
+ version : ' 1'
46
+ threads : ' 1'
29
47
steps :
30
48
- uses : actions/checkout@v4
31
49
- uses : julia-actions/setup-julia@v1
You can’t perform that action at this time.
0 commit comments