|
17 | 17 | fail-fast: false |
18 | 18 | matrix: |
19 | 19 | os: |
20 | | - - ubuntu-22.04 # https://github.com/ocaml/setup-ocaml/issues/872 |
21 | | - - macos-13 |
| 20 | + - ubuntu-latest |
| 21 | + - macos-latest |
22 | 22 | ocaml-compiler: |
23 | 23 | - ocaml-variants.4.14.2+options,ocaml-option-flambda # matches opam lock file |
24 | 24 | # don't add any other because they won't be used |
|
30 | 30 |
|
31 | 31 | steps: |
32 | 32 | - name: Checkout code |
33 | | - uses: actions/checkout@v5 |
| 33 | + uses: actions/checkout@v6 |
34 | 34 |
|
35 | 35 | - name: Set up OCaml ${{ matrix.ocaml-compiler }} |
36 | 36 | env: |
|
42 | 42 | ocaml-compiler: ${{ matrix.ocaml-compiler }} |
43 | 43 |
|
44 | 44 | - name: Install graph-easy # TODO: remove if depext --with-test works (https://github.com/ocaml/opam/issues/5836) |
45 | | - if: ${{ matrix.os == 'ubuntu-22.04' }} |
| 45 | + if: ${{ startsWith(matrix.os, 'ubuntu') }} |
46 | 46 | run: sudo apt install -y libgraph-easy-perl |
47 | 47 |
|
48 | 48 | - name: Install dependencies |
|
60 | 60 | - name: Test |
61 | 61 | run: opam exec -- dune runtest |
62 | 62 |
|
63 | | - - uses: actions/upload-artifact@v5 |
| 63 | + - uses: actions/upload-artifact@v6 |
64 | 64 | if: always() |
65 | 65 | with: |
66 | 66 | name: suite_result-${{ matrix.os }} |
|
73 | 73 | fail-fast: false |
74 | 74 | matrix: |
75 | 75 | os: |
76 | | - - ubuntu-22.04 # https://github.com/ocaml/setup-ocaml/issues/872 |
| 76 | + - ubuntu-latest |
77 | 77 | ocaml-compiler: |
78 | 78 | - ocaml-variants.4.14.2+options,ocaml-option-flambda # matches opam lock file |
79 | 79 | # don't add any other because they won't be used |
|
82 | 82 |
|
83 | 83 | steps: |
84 | 84 | - name: Checkout code |
85 | | - uses: actions/checkout@v5 |
| 85 | + uses: actions/checkout@v6 |
86 | 86 |
|
87 | 87 | - name: Set up OCaml ${{ matrix.ocaml-compiler }} |
88 | 88 | env: |
|
94 | 94 | ocaml-compiler: ${{ matrix.ocaml-compiler }} |
95 | 95 |
|
96 | 96 | - name: Install graph-easy # TODO: remove if depext --with-test works (https://github.com/ocaml/opam/issues/5836) |
97 | | - if: ${{ matrix.os == 'ubuntu-22.04' }} |
| 97 | + if: ${{ startsWith(matrix.os, 'ubuntu') }} |
98 | 98 | run: sudo apt install -y libgraph-easy-perl |
99 | 99 |
|
100 | 100 | - name: Install spin |
|
0 commit comments