You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/ci.yml
+32-6Lines changed: 32 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -15,20 +15,18 @@ jobs:
15
15
fail-fast: false
16
16
matrix:
17
17
version:
18
-
- '1'# Replace this with the minimum Julia version that your package supports. E.g. if your package requires Julia 1.5 or higher, change this to '1.5'.
19
-
os:
20
-
- ubuntu-latest
18
+
- '1'
19
+
os: [ubuntu-latest] # adjust according to need, e.g. os: [ubuntu-latest] if testing only on linux
21
20
arch:
22
21
- x64
23
-
24
22
steps:
25
-
# Cancel ongoing CI test runs if pushing to branch again before the previous tests
23
+
# Cancel ongoing CI test runs if pushing to branch again before the previous tests
26
24
# have finished
27
25
- name: Cancel ongoing test runs for previous commits
0 commit comments