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 a21121f commit 15f62daCopy full SHA for 15f62da
.github/workflows/CI.yml
@@ -5,6 +5,14 @@ on:
5
branches:
6
- release-0.18
7
tags: '*'
8
+
9
+concurrency:
10
+ # group by workflow and ref; the last slightly strange component ensures that for pull
11
+ # requests, we limit to 1 concurrent job, but for the default repository branch we don't
12
+ group: ${{ github.workflow }}-${{ github.ref }}-${{ github.ref_name != github.event.repository.default_branch || github.run_number }}
13
+ # Cancel intermediate builds, but only if it is a pull request build.
14
+ cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
15
16
jobs:
17
test:
18
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
0 commit comments