Skip to content

fixing automation

fixing automation #37

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
submodules: recursive
- name: Install dependencies
run: sudo apt-get update && sudo apt-get install -y build-essential ninja-build libqhull-dev libgraphviz-dev pax-utils curl
- name: Build binary
run: make
shell: bash
- name: Build tests
run: make test
shell: bash
- name: Run tests
run: make check
shell: bash