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