Skip to content

Python and C++ source files and tests files will #13

Python and C++ source files and tests files will

Python and C++ source files and tests files will #13

Workflow file for this run

name: Cpp Format & Test
on: [push]
jobs:
build-cpp:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: make
run: |
cd cpp
make all
- name: format
run: |
cd cpp
make format
- name: run_tests
run: |
cd cpp
make run_tests
- name: clean
run: |
cd cpp
make clean