upstream: github.com/mirage/ca-certs
0
fork

Configure Feed

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

Update GitHub Actions

Signed-off-by: Sora Morimoto <sora@morimoto.io>

+22 -12
+6
.github/dependabot.yml
··· 1 + version: 2 2 + updates: 3 + - package-ecosystem: github-actions 4 + directory: / 5 + schedule: 6 + interval: weekly
+16 -12
.github/workflows/test.yml
··· 5 5 jobs: 6 6 tests: 7 7 name: Tests 8 - 9 8 strategy: 10 9 fail-fast: false 11 10 matrix: 12 - ocaml-version: ["4.13.1", "4.12.1", "4.11.2"] 13 - operating-system: [macos-latest, ubuntu-latest, windows-latest] 14 - 15 - runs-on: ${{ matrix.operating-system }} 16 - 11 + os: [macos-latest, ubuntu-latest, windows-latest] 12 + ocaml-compiler: ["4.14", "4.13", "4.12", "4.11"] 13 + exclude: 14 + - os: macos-latest 15 + ocaml-compiler: "4.11" 16 + - os: windows-latest 17 + ocaml-compiler: "4.12" 18 + - os: windows-latest 19 + ocaml-compiler: "4.11" 20 + runs-on: ${{ matrix.os }} 17 21 steps: 18 - - name: Checkout code 19 - uses: actions/checkout@v2 20 - 21 - - name: Use OCaml ${{ matrix.ocaml-version }} 22 - uses: ocaml/setup-ocaml@v2 22 + - uses: actions/checkout@v4 23 + - uses: ocaml/setup-ocaml@v3 23 24 with: 24 - ocaml-compiler: ${{ matrix.ocaml-version }} 25 + ocaml-compiler: ${{ matrix.ocaml-compiler }} 26 + - run: opam install . --deps-only --with-test 27 + - run: opam exec -- dune build 28 + - run: opam exec -- dune runtest