Skip to content

Standardize repository structure with CI and documentation #4

Standardize repository structure with CI and documentation

Standardize repository structure with CI and documentation #4

Workflow file for this run

name: CI
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y cmake g++ libboost-dev lcov
- name: Build
run: make build
- name: Test
run: make test
- name: Generate coverage report
run: make coverage
- name: Upload coverage artifacts
uses: actions/upload-artifact@v4
with:
name: coverage-report
path: build/coverage/
retention-days: 30