Skip to content

Commit

Permalink
feat(CI): add p19 task
Browse files Browse the repository at this point in the history
  • Loading branch information
pmpknu authored Oct 29, 2024
1 parent d4fed34 commit 24bd133
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,29 @@ jobs:
- run: opam exec -- dune build @fmt @check @runtest -j3
- run: opam exec -- dune runtest
- run: opam exec -- zanuda -no-top_file_license -no-check-filesystem -dir .

task19:
strategy:
fail-fast: false

runs-on: ubuntu-latest
defaults:
run:
working-directory: ./p19

steps:
- name: Checkout tree
uses: actions/checkout@v4

- name: Set-up OCaml
uses: ocaml/setup-ocaml@v3
with:
ocaml-compiler: 4.14

- run: opam install . --deps-only --with-test
- run: opam install zanuda
- run: opam install ounit2
- run: rm -rf _build
- run: opam exec -- dune build @fmt @check @runtest -j3
- run: opam exec -- dune runtest
- run: opam exec -- zanuda -no-top_file_license -no-check-filesystem -dir .

0 comments on commit 24bd133

Please sign in to comment.