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 d71e0f0 commit dc6f5f3Copy full SHA for dc6f5f3
.github/workflows/CI.yml
@@ -27,6 +27,9 @@ jobs:
27
arch:
28
- x64
29
steps:
30
+ - name: Set JULIA_DEBUG environment variable
31
+ if: ${{ runner.debug == '1' }}
32
+ run: echo "JULIA_DEBUG=all" >> $GITHUB_ENV
33
- uses: actions/checkout@v2
34
- uses: julia-actions/setup-julia@v1
35
with:
@@ -39,7 +42,4 @@ jobs:
39
42
- uses: codecov/codecov-action@v4
40
43
41
44
token: ${{ secrets.CODECOV_TOKEN }}
- fail_ci_if_error: false
- - name: Set JULIA_DEBUG environment variable
- if: ${{ runner.debug == '1' }}
45
- run: export JULIA_DEBUG="all"
+ fail_ci_if_error: false
0 commit comments