File: workflow.yml

package info (click to toggle)
janest-base 0.17.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,632 kB
  • sloc: ml: 48,653; ansic: 281; javascript: 126; makefile: 14
file content (49 lines) | stat: -rw-r--r-- 1,170 bytes parent folder | download | duplicates (3)
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
46
47
48
49
name: Main workflow

on:
  pull_request:
  push:
  schedule:
    - cron: '0 1 * * SAT'

concurrency:
  group: ci-${{ github.ref }}
  cancel-in-progress: true

jobs:
  Tests:
    strategy:
      fail-fast: false
      matrix:
        os: [macos-latest, ubuntu-latest, windows-latest]
        ocaml:
          - ocaml-base-compiler.5.0.0~alpha0
          - 4.14.0
        include:
          - {os: ubuntu-latest, ocaml: 4.13.1}
          - {os: ubuntu-latest, ocaml: 4.12.1}
          - {os: ubuntu-latest, ocaml: 4.11.2}
        exclude:
          - {os: windows-latest, ocaml: ocaml-base-compiler.5.0.0~alpha0}

    runs-on: ${{ matrix.os }}

    steps:
      - name: Checkout code
        uses: actions/checkout@v3

      - name: Setup OCaml ${{ matrix.ocaml }}
        uses: ocaml/setup-ocaml@v2
        with:
          cache-prefix: v1-${{ matrix.os }}-${{ matrix.ocaml }}
          dune-cache: true
          ocaml-compiler: ${{ matrix.ocaml }}

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

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

      - name: Run test suite
        run: opam exec -- dune runtest