feat: functions declaration and calls (#13) #23
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: Continuous Integration | |
on: [push] | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: unit tests | |
run: make run-test | |
- name: code coverage | |
run: | | |
pip3 install gcovr > /dev/null | |
make coverage |