The unpac monorepo manager self-hosting as a monorepo using unpac
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #38 from hannesm/actions

GitHub action: test on 4.08, 4.14, and 5.4 - linux only

authored by

Hannes Mehnert and committed by
GitHub
e98494b7 88b37c36

+7 -7
+7 -7
vendor/opam/patch/.github/workflows/main.yml
··· 13 13 fail-fast: false 14 14 matrix: 15 15 os: 16 - - macos-latest 17 16 - ubuntu-latest 18 - - windows-latest 19 17 ocaml-compiler: 18 + - 4.08.x 20 19 - 4.14.x 20 + - 5.4.x 21 21 22 22 runs-on: ${{ matrix.os }} 23 23 24 24 steps: 25 25 - name: Checkout code 26 - uses: actions/checkout@v2 26 + uses: actions/checkout@v5 27 27 28 28 - name: Use OCaml ${{ matrix.ocaml-compiler }} 29 - uses: ocaml/setup-ocaml@v2 29 + uses: ocaml/setup-ocaml@v3 30 30 with: 31 31 ocaml-compiler: ${{ matrix.ocaml-compiler }} 32 32 33 - - run: opam install . --deps-only --with-test 33 + - run: opam install ./patch.opam --deps-only --with-test 34 34 35 - - run: opam exec -- dune build 35 + - run: opam exec -- dune build -p patch 36 36 37 - - run: opam exec -- dune runtest 37 + - run: opam exec -- dune runtest -p patch