Skip to content

overcome the upload issues, provide CODECOV_TOKEN for sanity pipeline #150

overcome the upload issues, provide CODECOV_TOKEN for sanity pipeline

overcome the upload issues, provide CODECOV_TOKEN for sanity pipeline #150

Workflow file for this run

---
name: Sanity
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.8
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
python -m pip install .[test]
- name: Test with pytest
run: |
make test
- name: Upload coverage to codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}