Skip to content

Commit 9a0235e

Browse files
committed
ci: bump and fix actions
Signed-off-by: Sora Morimoto <[email protected]>
1 parent 327495f commit 9a0235e

File tree

1 file changed

+5
-8
lines changed

1 file changed

+5
-8
lines changed

.github/workflows/build-and-test.yml

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@ jobs:
2020
- ubuntu-latest
2121
- macos-latest
2222
- windows-latest
23-
ocaml-compiler:
24-
- "5.2"
2523

2624
runs-on: ${{ matrix.os }}
2725

@@ -44,11 +42,10 @@ jobs:
4442
- name: Install npm packages
4543
run: yarn install --frozen-lockfile
4644

47-
- name: Set-up OCaml ${{ matrix.ocaml-compiler }}
45+
- name: Set-up OCaml
4846
uses: ocaml/setup-ocaml@v3
4947
with:
50-
ocaml-compiler: ${{ matrix.ocaml-compiler }}
51-
allow-prerelease-opam: true
48+
ocaml-compiler: "5.2"
5249

5350
# Remove this pin once a compatible version of Merlin has been released
5451
# - name: Pin dev Merlin
@@ -82,10 +79,9 @@ jobs:
8279
submodules: true
8380

8481
- name: Set-up OCaml
85-
uses: ocaml/setup-ocaml@v2
82+
uses: ocaml/setup-ocaml@v3
8683
with:
8784
ocaml-compiler: "5.2"
88-
allow-prerelease-opam: true
8985

9086
- name: Set git user
9187
run: |
@@ -96,7 +92,8 @@ jobs:
9692
run: |
9793
opam install . --deps-only
9894
opam exec -- make coverage-deps install-test-deps
95+
9996
- run: opam exec -- make test-coverage
10097
env:
101-
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}
98+
COVERALLS_REPO_TOKEN: ${{ github.token }}
10299
PULL_REQUEST_NUMBER: ${{ github.event.number }}

0 commit comments

Comments
 (0)