IO revamp compat #231
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: Unit testing with Codecov coverage checking | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
- main | |
- develop | |
pull_request: | |
jobs: | |
job_unit_test: | |
name: Unit test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone | |
uses: actions/checkout@v3 | |
- name: Install make and clang | |
run: | | |
sudo apt update | |
sudo apt install -y make clang | |
- name: Run unit tests | |
run: | | |
make -C tests/unit-tests |