Skip to content

Commit

Permalink
CI: Add compilation pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
antoniovazquezblanco committed Jun 17, 2024
1 parent 187045e commit 45a04a4
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Build
on: [push, pull_request, workflow_dispatch]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install ocaml ocamlbuild libnum-ocaml-dev autoconf automake indent libtool fig2dev
- name: Checkout
uses: actions/checkout@v4

- name: Bootstrap
run: sh bootstrap.sh

- name: Build
run: make

- name: Test
run: make -C test smallcheck

0 comments on commit 45a04a4

Please sign in to comment.