File tree Expand file tree Collapse file tree 2 files changed +31
-2
lines changed Expand file tree Collapse file tree 2 files changed +31
-2
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 :
@@ -15,14 +23,27 @@ jobs:
15
23
matrix :
16
24
version :
17
25
- ' 1'
18
- - ' 1.9 '
26
+ - ' 1.10 '
19
27
os :
20
28
- ubuntu-latest
21
29
threads :
22
30
- ' 1'
23
- - ' 2 '
31
+ - ' 5 '
24
32
arch :
25
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'
26
47
steps :
27
48
- uses : actions/checkout@v4
28
49
- uses : julia-actions/setup-julia@v1
You can’t perform that action at this time.
0 commit comments