Skip to content

basic test framework with github action #4

basic test framework with github action

basic test framework with github action #4

Workflow file for this run

name: Run tests
on:
- push
- pull_request
jobs:
run-tests:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v4
- name: setup env
run: |
sudo apt-get update
sudo apt install build-essential
- name: run tests
run: |
make run_test