We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 734df1c commit 6f089f3Copy full SHA for 6f089f3
2 files changed
.github/workflows/build.yml
@@ -0,0 +1,18 @@
1
+name: CI
2
+on: [push, pull_request]
3
+jobs:
4
+ build:
5
+ strategy:
6
+ matrix:
7
+ ocaml-version: [4.14.3,5.4.1]
8
+ runs-on: [ubuntu-latest, macos-latest, windows-latest]
9
+ steps:
10
+ - name: Checkout code
11
+ uses: actions/checkout@v4
12
+ - name: Set-up OCaml
13
+ uses: ocaml/setup-ocaml@v3
14
+ with:
15
+ ocaml-compiler: ${{ matrix.ocaml-version }}
16
+ opam-local-packages: bechamel.opam
17
+ - run: opam pin add . -n
18
+ - run: opam install bechamel --with-test -v
.github/workflows/wintest.yml
0 commit comments