Skip to content

feat: add lint, format and test Cpp and Python files #15

feat: add lint, format and test Cpp and Python files

feat: add lint, format and test Cpp and Python files #15

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