Skip to content

Merge branch 'fix-issue-304' of https://github.com/ludwig-cf/ludwig i… #333

Merge branch 'fix-issue-304' of https://github.com/ludwig-cf/ludwig i…

Merge branch 'fix-issue-304' of https://github.com/ludwig-cf/ludwig i… #333

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}