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 fba62dc commit c533f6dCopy full SHA for c533f6d
.github/workflows/CI.yml
@@ -1,9 +1,20 @@
1
name: CI
2
+
3
env:
4
JULIA_NUM_THREADS: 2
5
on:
- - push
6
- - pull_request
+ push:
7
+ branches:
8
+ - master
9
+ pull_request:
10
11
12
+concurrency:
13
+ # Skip intermediate builds: always.
14
+ # Cancel intermediate builds: only if it is a pull request build.
15
+ group: ${{ github.workflow }}-${{ github.ref }}
16
+ cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
17
18
jobs:
19
test:
20
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
0 commit comments