File tree Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change 1
1
name : CI
2
+ concurrency :
3
+ group : build-${{ github.event.pull_request.number || github.ref }}
4
+ cancel-in-progress : true
2
5
on :
3
6
push :
4
7
branches :
5
8
- master
6
9
pull_request :
7
10
jobs :
11
+ pre_job :
12
+ # continue-on-error: true # Uncomment once integration is finished
13
+ runs-on : ubuntu-latest
14
+ # Map a step output to a job output
15
+ outputs :
16
+ should_skip : ${{ steps.skip_check.outputs.should_skip }}
17
+ steps :
18
+ - id : skip_check
19
+ uses : fkirc/skip-duplicate-actions@v5
8
20
test :
21
+ needs : pre_job
22
+ if : needs.pre_job.outputs.should_skip != 'true'
9
23
name : Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
10
24
runs-on : ${{ matrix.os }}
11
25
continue-on-error : ${{ matrix.version == 'nightly' }}
You can’t perform that action at this time.
0 commit comments