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 8b7ca02 commit 61a918fCopy full SHA for 61a918f
.github/workflows/ci.yml
@@ -9,6 +9,11 @@ on:
9
- 'main'
10
- 'release-*'
11
tags: '*'
12
+concurrency:
13
+ # Skip intermediate builds: all builds except for builds on the `main` or `release-*` branches
14
+ # Cancel intermediate builds: only pull request builds
15
+ group: ${{ github.workflow }}-${{ github.ref }}-${{ github.ref != 'refs/heads/main' || startsWith(github.ref, 'refs/heads/release-') || github.run_number }}
16
+ cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
17
jobs:
18
test:
19
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
0 commit comments