Skip to content

#339 - add codecov action #81

#339 - add codecov action

#339 - add codecov action #81

Workflow file for this run

name: cicd
on:
push:
tags:
- "*"
pull_request:
jobs:
static-checks:
uses: ./.github/workflows/_static-checks.yml
integration-tests:
uses: ./.github/workflows/_integration-tests.yml
secrets:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

Check failure on line 14 in .github/workflows/main-cicd.yml

View workflow run for this annotation

GitHub Actions / cicd

Invalid workflow file

The workflow is not valid. .github/workflows/main-cicd.yml (Line: 14, Col: 22): Invalid secret, CODECOV_TOKEN is not defined in the referenced workflow.
build-package:
uses: ./.github/workflows/_build-package.yml
upload-package:
uses: ./.github/workflows/_upload-package.yml
if: startsWith(github.ref, 'refs/tags/')
needs: [static-checks, integration-tests, build-package]
secrets:
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}