diff options
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/ubuntu_20_04_build_latest.yml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/.github/workflows/ubuntu_20_04_build_latest.yml b/.github/workflows/ubuntu_20_04_build_latest.yml new file mode 100644 index 00000000..4e9158d7 --- /dev/null +++ b/.github/workflows/ubuntu_20_04_build_latest.yml @@ -0,0 +1,16 @@ +name: CI ubuntu-20.04 (ocaml latest) + +on: [push] + +jobs: + build: + + runs-on: ubuntu-20.04 + + steps: + - uses: actions/checkout@v1 + - name: Build on ubuntu (ocaml latest) + run: | + sudo apt install build-essential libgmp-dev z3 + sudo apt install opam + etc/ci_opam_latest_build.sh |
