Skip to content

Add CODECOV_TOKEN to test.yml #9

Add CODECOV_TOKEN to test.yml

Add CODECOV_TOKEN to test.yml #9

Workflow file for this run

name: Test
on:
push:
paths:
- 'src/**'
- 'include/**'
- 'test/src/**'
- 'test/reference/**'
- 'Makefile'
- '*.mk'
- '.github/workflows/test.yml'
jobs:
test:
name: Test and coverage
runs-on: ubuntu-latest
env:
CC: gcc
steps:
- uses: actions/checkout@v3
- name: Run regression tests
run: make test
- name: Generate coverage data
run: make coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
continue-on-error: true
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

Check failure on line 36 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/test.yml

Invalid workflow file

You have an error in your yaml syntax on line 36
with:
fail_ci_if_error: false
flags: unittests
name: codecov
verbose: true