Skip to content

Commit 99c6724

Browse files
authored
Disable CI
1 parent f7182e2 commit 99c6724

File tree

1 file changed

+38
-34
lines changed

1 file changed

+38
-34
lines changed

.github/workflows/ci.yml

Lines changed: 38 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -12,39 +12,43 @@ concurrency:
1212
permissions:
1313
contents: read
1414
jobs:
15-
finalize:
15+
no-ci:
1616
timeout-minutes: 10
17-
needs:
18-
- unit-tests
19-
# Important: the next line MUST be `if: always()`.
20-
# Do not change that line.
21-
# That line is necessary to make sure that this job runs even if tests fail.
22-
if: always()
17+
if: false
2318
runs-on: ubuntu-latest
24-
steps:
25-
- run: |
26-
echo unit-tests: ${{ needs.unit-tests.result }}
27-
- run: exit 1
28-
# The last line must NOT end with ||
29-
# All other lines MUST end with ||
30-
if: |
31-
(needs.unit-tests.result != 'success')
32-
unit-tests:
33-
runs-on: ubuntu-latest
34-
timeout-minutes: 20
35-
strategy:
36-
fail-fast: false
37-
matrix:
38-
version:
39-
- '1.2' # minimum Julia version supported in Project.toml
40-
- '1.6' # previous LTS
41-
- '1.10' # current LTS
42-
- '1' # automatically expands to the latest stable 1.x release of Julia
43-
steps:
44-
- uses: actions/checkout@v4
45-
with:
46-
persist-credentials: false
47-
- uses: julia-actions/setup-julia@v2
48-
with:
49-
version: ${{ matrix.version }}
50-
- uses: julia-actions/julia-runtest@v1
19+
# finalize:
20+
# timeout-minutes: 10
21+
# needs:
22+
# - unit-tests
23+
# # Important: the next line MUST be `if: always()`.
24+
# # Do not change that line.
25+
# # That line is necessary to make sure that this job runs even if tests fail.
26+
# if: always()
27+
# runs-on: ubuntu-latest
28+
# steps:
29+
# - run: |
30+
# echo unit-tests: ${{ needs.unit-tests.result }}
31+
# - run: exit 1
32+
# # The last line must NOT end with ||
33+
# # All other lines MUST end with ||
34+
# if: |
35+
# (needs.unit-tests.result != 'success')
36+
# unit-tests:
37+
# runs-on: ubuntu-latest
38+
# timeout-minutes: 20
39+
# strategy:
40+
# fail-fast: false
41+
# matrix:
42+
# version:
43+
# - '1.2' # minimum Julia version supported in Project.toml
44+
# - '1.6' # previous LTS
45+
# - '1.10' # current LTS
46+
# - '1' # automatically expands to the latest stable 1.x release of Julia
47+
# steps:
48+
# - uses: actions/checkout@v4
49+
# with:
50+
# persist-credentials: false
51+
# - uses: julia-actions/setup-julia@v2
52+
# with:
53+
# version: ${{ matrix.version }}
54+
# - uses: julia-actions/julia-runtest@v1

0 commit comments

Comments
 (0)