github actions are dumb
All checks were successful
Build and Test verification / build (push) Successful in 22s
Build and Test verification / test (push) Successful in 4s

This commit is contained in:
2026-05-08 14:27:31 -05:00
parent a138c4b3c5
commit a36faa6c0e

View File

@@ -33,6 +33,9 @@ jobs:
image: git.vxbard.net/homeburger/bard-cpp-builder:1.0 image: git.vxbard.net/homeburger/bard-cpp-builder:1.0
needs: build needs: build
steps: steps:
- name: clone
uses: actions/checkout@v3
- name: container-setup - name: container-setup
run: container-setup.sh run: container-setup.sh
@@ -42,11 +45,15 @@ jobs:
name: build-artifact name: build-artifact
path: build path: build
- name: Make Executable - name: make_executable
run: chmod -R +x ./build run: chmod -R +x ./build
- name: run_unit_tests - name: run_unit_tests
run: | run: |
cd build cd build
ctest -T Test ctest -T Test
gcovr -r .. --filter "../src"
- name: code_coverage
run: |
cd build
gcovr -r .. --filter "../src"