Skip to content

Commit

Permalink
feat(gha): build
Browse files Browse the repository at this point in the history
  • Loading branch information
mattjbray committed Apr 28, 2024
1 parent b427d3b commit b605622
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: "main"

on:
workflow_dispatch:
pull_request:
push:

permissions:
id-token: write
contents: read
statuses: write

jobs:
build:
strategy:
matrix:
os:
- ubuntu-latest
ocaml-compiler:
- "5.1"
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up OCaml ${{ matrix.ocaml-compiler }}
uses: ocaml/setup-ocaml@v2
with:
ocaml-compiler: ${{ matrix.ocaml-compiler }}
- run: opam install . --deps-only --with-test
- run: opam exec -- dune build
- run: opam exec -- dune build @fmt

0 comments on commit b605622

Please sign in to comment.