Skip to content

Commit

Permalink
add .github/workflows/test.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
ushitora-anqou committed Mar 18, 2024
1 parent 3783b06 commit 450c1d6
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Run unit/integration tests

on:
pull_request:
push:
branches:
- master

permissions: read-all

jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout tree
uses: actions/checkout@v4
# - name: Setup tmate session
# uses: mxschmitt/action-tmate@v3
- name: Set-up OCaml 4.14.1
uses: ocaml/setup-ocaml@v2
with:
ocaml-compiler: "4.14.1"
- run: opam install . --deps-only --with-test
- run: opam exec -- make test

0 comments on commit 450c1d6

Please sign in to comment.