Skip to content

Commit

Permalink
Fix lockfiles in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
eilvelia committed Jun 29, 2022
1 parent 6c1b134 commit 7ae1dff
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,11 @@ jobs:
uses: ocaml/setup-ocaml@v2
with:
ocaml-compiler: ${{ matrix.ocaml-version }}
ocaml-pin: false
- name: Install dependencies
run: opam install . --deps-only --with-test --locked
run: |
opam pin add camlproto.dev --no-action . --locked
opam install . --deps-only --with-test --locked
- name: Build
run: opam exec -- dune build @install @examples
- name: Test
Expand Down

0 comments on commit 7ae1dff

Please sign in to comment.