added github ci #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y gcc lcov libncurses5-dev | |
- name: Build project | |
run: | | |
make test | |
- name: Run tests | |
run: | | |
./companders_fulltest | |
- name: Capture coverage info | |
run: | | |
lcov --directory . --capture --output-file coverage.info | |
- name: Filter out system and test code | |
run: | | |
lcov --remove coverage.info 'tests/*' '/usr/*' 'test-library*' --output-file coverage.info | |
- name: List coverage info | |
run: | | |
lcov --list coverage.info | |