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 bc7074a commit e4e8204Copy full SHA for e4e8204
.github/workflows/ci.yml
@@ -13,7 +13,18 @@ on:
13
- 'README.md'
14
- '.github/workflows/TagBot.yml'
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
test:
26
+ needs: pre_job
27
+ if: needs.pre_job.outputs.should_skip != 'true'
28
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
29
runs-on: ${{ matrix.os }}
30
strategy:
0 commit comments