Skip to content

implement a rudimentory test framework and CI #14

implement a rudimentory test framework and CI

implement a rudimentory test framework and CI #14

Workflow file for this run

name: Run tests
on:
- push
- pull_request
jobs:
run-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: setup ripgrep and gcc
run: |
sudo apt-get update
sudo apt install build-essential
sudo apt install ripgrep
- name: run tests
run: |
make run_test