Skip to content

update build.yml for autotest #16

update build.yml for autotest

update build.yml for autotest #16

Workflow file for this run

name: Build the project
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Clone the repo
uses: actions/checkout@v4
with:
submodules: true
- name: Build the code
run: |
sudo apt install -y build-essential python-is-python3
make
- name: Run unit test
run: |
pip install pytest
pytest pyTestC.py || exit 1