Skip to content

Commit

Permalink
Add GH action to test on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
polytypic committed Feb 4, 2024
1 parent bdbdc67 commit 96273ec
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# To work around MDX issues
README.md text eol=lf
42 changes: 42 additions & 0 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: build-and-test

on:
pull_request:
push:
branches:
- main

jobs:
build-windows:
strategy:
matrix:
ocaml-compiler:
- ocaml.5.0.0,ocaml-option-mingw
- ocaml.5.1.1,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@v2
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

0 comments on commit 96273ec

Please sign in to comment.