Skip to content

basic test framework with github action #9

basic test framework with github action

basic test framework with github action #9

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 env
run: |
sudo apt-get update
sudo apt install build-essential
- name: run tests
run: |
make run_test