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 f93a1fe commit 04057ebCopy full SHA for 04057eb
.github/workflows/ci.yml
@@ -18,7 +18,19 @@ concurrency:
18
cancel-in-progress: true
19
20
jobs:
21
+ pre_job:
22
+ # continue-on-error: true # Uncomment once integration is finished
23
+ runs-on: ubuntu-latest
24
+ # Map a step output to a job output
25
+ outputs:
26
+ should_skip: ${{ steps.skip_check.outputs.should_skip }}
27
+ steps:
28
+ - id: skip_check
29
+ uses: fkirc/skip-duplicate-actions@v5
30
+
31
test:
32
+ needs: pre_job
33
+ if: needs.pre_job.outputs.should_skip != 'true'
34
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
35
runs-on: ${{ matrix.os }}
36
strategy:
0 commit comments