Skip to content

Commit

Permalink
Continuous Integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
lukstafi committed Jan 27, 2024
1 parent e959f37 commit 460438e
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: ci
on:
push:
branches:
- main
pull_request:
jobs:
run:
name: Build
strategy:
matrix:
os:
- ubuntu-latest
#- windows-latest
- macos-latest
ocaml-compiler:
- 4.08.x
#- 4.12.x
- 5.1.x
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: ocaml/setup-ocaml@v2
with:
ocaml-compiler: ${{ matrix.ocaml-compiler }}
dune-cache: true
allow-prerelease-opam: true
- run: opam pin -n .
- run: opam depext -yt printbox printbox-html printbox-md printbox-text
- run: opam install -t . --deps-only
- run: opam exec -- dune build @all
- run: opam exec -- dune runtest
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

- PrintBox Markdown backend.
- Optionally, log to multiple files, opening a new file once a file size threshold is exceeded.
- Continuous Integration tests.

### Changed

Expand Down

0 comments on commit 460438e

Please sign in to comment.