Skip to content

feat: add ci for cpp #1

feat: add ci for cpp

feat: add ci for cpp #1

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: make all
- name: format
run: make format
- name: run_tests
run: make run_tests
- name: clean
run: make clean