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

Only test on Windows with GitHub actions

-32
-32
vendor/opam/thread-table/.github/workflows/workflow.yml
··· 7 7 - main 8 8 9 9 jobs: 10 - build: 11 - strategy: 12 - fail-fast: false 13 - matrix: 14 - os: 15 - - ubuntu-latest 16 - - macos-latest 17 - ocaml-compiler: 18 - - 4.08.0 19 - - 4.x 20 - - 5.x 21 - 22 - runs-on: ${{ matrix.os }} 23 - 24 - steps: 25 - - name: Checkout code 26 - uses: actions/checkout@v3 27 - 28 - - name: Use OCaml ${{ matrix.ocaml-compiler }} 29 - uses: ocaml/setup-ocaml@v2 30 - with: 31 - ocaml-compiler: ${{ matrix.ocaml-compiler }} 32 - 33 - - name: Install dependencies 34 - run: opam install . --deps-only --with-test 35 - 36 - - name: Build 37 - run: opam exec -- dune build 38 - 39 - - name: Test 40 - run: opam exec -- dune runtest 41 - 42 10 build-windows: 43 11 runs-on: windows-latest 44 12