File tree Expand file tree Collapse file tree 2 files changed +24
-0
lines changed Expand file tree Collapse file tree 2 files changed +24
-0
lines changed Original file line number Diff line number Diff line change 13
13
- ' README.md'
14
14
- ' .github/workflows/TagBot.yml'
15
15
jobs :
16
+ pre_job :
17
+ # continue-on-error: true # Uncomment once integration is finished
18
+ runs-on : ubuntu-latest
19
+ # Map a step output to a job output
20
+ outputs :
21
+ should_skip : ${{ steps.skip_check.outputs.should_skip }}
22
+ steps :
23
+ - id : skip_check
24
+ uses : fkirc/skip-duplicate-actions@v5
25
+
16
26
test :
27
+ needs : pre_job
28
+ if : needs.pre_job.outputs.should_skip != 'true'
17
29
name : Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
18
30
runs-on : ${{ matrix.os }}
19
31
strategy :
Original file line number Diff line number Diff line change 14
14
- ' .github/workflows/TagBot.yml'
15
15
16
16
jobs :
17
+ pre_job :
18
+ # continue-on-error: true # Uncomment once integration is finished
19
+ runs-on : ubuntu-latest
20
+ # Map a step output to a job output
21
+ outputs :
22
+ should_skip : ${{ steps.skip_check.outputs.should_skip }}
23
+ steps :
24
+ - id : skip_check
25
+ uses : fkirc/skip-duplicate-actions@v5
26
+
17
27
test :
28
+ needs : pre_job
29
+ if : needs.pre_job.outputs.should_skip != 'true'
18
30
name : ${{ matrix.package.group }}/${{ matrix.package.repo }}/${{ matrix.julia-version }}
19
31
runs-on : ${{ matrix.os }}
20
32
strategy :
You can’t perform that action at this time.
0 commit comments