Skip to content

[Preprocessing] Run antiprenexing by default and before quantif. elim… #139

[Preprocessing] Run antiprenexing by default and before quantif. elim…

[Preprocessing] Run antiprenexing by default and before quantif. elim… #139

Workflow file for this run

# Workflow for running tests
#
# Author: Tomas Dacik (idacik@fit.vut.cz), 2022
name: tests
on: [push, pull_request]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
# based on https://github.com/ocaml/setup-ocaml
- name: Set-up OCaml
uses: ocaml/setup-ocaml@v2
with:
ocaml-compiler: "5.2"
- name: Install dependencies
run: opam install . --deps-only --with-test -y
- name: Build Astral
run: opam exec -- dune build
- name: Run unit tests
run: dune runtest
- name: Run regression tests
run: python3 scripts/run_tests.py