|
1 | | -name: CI |
2 | | -on: |
3 | | - push: |
4 | | - branches: |
5 | | - - main |
6 | | - tags: ['*'] |
7 | | - pull_request: |
8 | | - workflow_dispatch: |
9 | | -concurrency: |
10 | | - # Skip intermediate builds: always. |
11 | | - # Cancel intermediate builds: only if it is a pull request build. |
12 | | - group: ${{ github.workflow }}-${{ github.ref }} |
13 | | - cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }} |
14 | | -jobs: |
15 | | - test: |
16 | | - name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} |
17 | | - runs-on: ${{ matrix.os }} |
18 | | - timeout-minutes: 60 |
19 | | - permissions: # needed to allow julia-actions/cache to proactively delete old caches that it has created |
20 | | - actions: write |
21 | | - contents: read |
22 | | - strategy: |
23 | | - fail-fast: false |
24 | | - matrix: |
25 | | - version: |
26 | | - - '1.11' |
27 | | - - '1.6' |
28 | | - - 'pre' |
29 | | - os: |
30 | | - - ubuntu-latest |
31 | | - arch: |
32 | | - - x64 |
33 | | - steps: |
34 | | - - uses: actions/checkout@v4 |
35 | | - - uses: julia-actions/setup-julia@v2 |
36 | | - with: |
37 | | - version: ${{ matrix.version }} |
38 | | - arch: ${{ matrix.arch }} |
39 | | - - uses: julia-actions/cache@v2 |
40 | | - - uses: julia-actions/julia-buildpkg@v1 |
41 | | - - uses: julia-actions/julia-runtest@v1 |
| 1 | +# name: CI |
| 2 | +# on: |
| 3 | +# push: |
| 4 | +# branches: |
| 5 | +# - main |
| 6 | +# tags: ['*'] |
| 7 | +# pull_request: |
| 8 | +# workflow_dispatch: |
| 9 | +# concurrency: |
| 10 | +# # Skip intermediate builds: always. |
| 11 | +# # Cancel intermediate builds: only if it is a pull request build. |
| 12 | +# group: ${{ github.workflow }}-${{ github.ref }} |
| 13 | +# cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }} |
| 14 | +# jobs: |
| 15 | +# test: |
| 16 | +# name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} |
| 17 | +# runs-on: ${{ matrix.os }} |
| 18 | +# timeout-minutes: 60 |
| 19 | +# permissions: # needed to allow julia-actions/cache to proactively delete old caches that it has created |
| 20 | +# actions: write |
| 21 | +# contents: read |
| 22 | +# strategy: |
| 23 | +# fail-fast: false |
| 24 | +# matrix: |
| 25 | +# version: |
| 26 | +# - '1.11' |
| 27 | +# - '1.6' |
| 28 | +# - 'pre' |
| 29 | +# os: |
| 30 | +# - ubuntu-latest |
| 31 | +# arch: |
| 32 | +# - x64 |
| 33 | +# steps: |
| 34 | +# - uses: actions/checkout@v4 |
| 35 | +# - uses: julia-actions/setup-julia@v2 |
| 36 | +# with: |
| 37 | +# version: ${{ matrix.version }} |
| 38 | +# arch: ${{ matrix.arch }} |
| 39 | +# - uses: julia-actions/cache@v2 |
| 40 | +# - uses: julia-actions/julia-buildpkg@v1 |
| 41 | +# - uses: julia-actions/julia-runtest@v1 |
0 commit comments