Skip to content

Commit

Permalink
full CI/CD
Browse files Browse the repository at this point in the history
  • Loading branch information
anthonymakarewicz committed Jul 15, 2024
1 parent a937214 commit 9e2dad1
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,28 @@ jobs:
run: |
cd build
ctest --output-on-failure
- name: Analyze code with clang-tidy
- name: Analyze code with clang-tidy
run: |
cd build
make clang-tidy
#- name: Check code formatting with clang-format
# run: |
# cd build
# make clang-format-check

- name: Generate code coverage
run: |
cd build
make coverage
- name: Upload code coverage results
if: always()
uses: actions/upload-artifact@v2
with:
name: coverage-results
path: build/coverage-results


0 comments on commit 9e2dad1

Please sign in to comment.