Move everything out of src folder #34
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: Test Suit | |
on: | |
push: | |
branches: [ master, dev ] | |
jobs: | |
main: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Environment | |
run: sudo apt install make valgrind gcc | |
- name: Versions | |
run: | | |
gcc --version \ | |
make --version \ | |
valgrind --version \ | |
- name: Test Suite | |
run: make tests --always-make | |
- name: Upload Coverage | |
uses: codecov/codecov-action@v3 | |
with: | |
directory: ./tests | |
verbose: true |