mirror of
https://github.com/c-cube/ocaml-containers.git
synced 2025-12-06 11:15:31 -05:00
chore(ci): fix bad test logic
This commit is contained in:
parent
1f1b859ec7
commit
4ac67a7518
1 changed files with 3 additions and 3 deletions
6
.github/workflows/main.yml
vendored
6
.github/workflows/main.yml
vendored
|
|
@ -16,9 +16,9 @@ jobs:
|
|||
- run: opam pin -n .
|
||||
- run: opam depext -yt containers containers-data containers-thread
|
||||
- run: opam install -t . --deps-only
|
||||
if: ${{ job.os == 'Linux' }}
|
||||
if: ${{ matrix.operating-system == 'ubuntu-latest' }}
|
||||
- run: opam install . --deps-only # no test deps
|
||||
if: ${{ job.os != 'Linux' }}
|
||||
if: ${{ matrix.operating-system != 'ubuntu-latest' }}
|
||||
- run: opam exec -- dune build
|
||||
- run: opam exec -- dune runtest
|
||||
if: ${{ job.os == 'Linux' }}
|
||||
if: ${{ matrix.operating-system == 'ubuntu-latest' }}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue