File: workflow.yml

package info (click to toggle)
ocaml-multicore-magic 2.3.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 288 kB
  • sloc: ml: 565; sh: 60; ansic: 8; makefile: 7; javascript: 6
file content (45 lines) | stat: -rw-r--r-- 1,089 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: build-and-test

on:
  pull_request:
  push:
    branches:
      - main

jobs:
  build-windows:
    strategy:
      fail-fast: false
      matrix:
        ocaml-compiler:
          - ocaml.5.0.0,ocaml-option-mingw
          - ocaml.5.1.1,ocaml-option-mingw
          - ocaml.5.2.1,ocaml-option-mingw
          - ocaml.5.3.0,ocaml-option-mingw

    runs-on: windows-latest

    env:
      QCHECK_MSG_INTERVAL: '60'

    steps:
      - name: Check out code
        uses: actions/checkout@v3

      - name: Set up OCaml
        uses: ocaml/setup-ocaml@v3
        with:
          ocaml-compiler: ${{ matrix.ocaml-compiler }}
          opam-repositories: |
            dra27: https://github.com/dra27/opam-repository.git#windows-5.0
            default: https://github.com/ocaml-opam/opam-repository-mingw.git#sunset
            standard: https://github.com/ocaml/opam-repository.git

      - name: Install dependencies
        run: opam install . --deps-only --with-test

      - name: Build
        run: opam exec -- dune build

      - name: Test
        run: opam exec -- dune runtest