File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change 11name : CI
22env :
33 JULIA_NUM_THREADS : 2
4+ concurrency :
5+ # group by workflow and ref; the last slightly strange component ensures that for pull
6+ # requests, we limit to 1 concurrent job, but for the master branch we don't
7+ group : ${{ github.workflow }}-${{ github.ref }}-${{ (github.ref != 'refs/heads/master' && github.ref != 'refs/heads/main') || github.run_number }}
8+ # Cancel intermediate builds, but only if it is a pull request build.
9+ cancel-in-progress : ${{ startsWith(github.ref, 'refs/pull/') }}
410on :
511 pull_request :
612 branches :
Original file line number Diff line number Diff line change 11name : PR Pre-Commit Bot
22env :
33 JULIA_NUM_THREADS : 2
4+ concurrency :
5+ # group by workflow and ref; the last slightly strange component ensures that for pull
6+ # requests, we limit to 1 concurrent job, but for the master branch we don't
7+ group : ${{ github.workflow }}-${{ github.ref }}-${{ (github.ref != 'refs/heads/master' && github.ref != 'refs/heads/main') || github.run_number }}
8+ # Cancel intermediate builds, but only if it is a pull request build.
9+ cancel-in-progress : ${{ startsWith(github.ref, 'refs/pull/') }}
410on :
511 pull_request :
612jobs :
You can’t perform that action at this time.
0 commit comments