Skip to content

Merge pull request #314 from ludwig-cf/release-0.22.0 #352

Merge pull request #314 from ludwig-cf/release-0.22.0

Merge pull request #314 from ludwig-cf/release-0.22.0 #352

Workflow file for this run

name: Codecov
on: [push, pull_request]
jobs:
run:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build and run the unit tests
run: |
cp config/coverage-gcc.mk config.mk
make serial
make
make unit
cd src
gcov -abcfu *.c
- name: Upload results
run: |
curl -Os https://uploader.codecov.io/latest/linux/codecov
chmod +x codecov
./codecov -t ${CODECOV_TOKEN}