Skip to content

[pre-commit.ci] pre-commit autoupdate #159

[pre-commit.ci] pre-commit autoupdate

[pre-commit.ci] pre-commit autoupdate #159

Workflow file for this run

name: CodeCov
on: [pull_request]
jobs:
run:
runs-on: ubuntu-latest
env:
OS: ubuntu-latest
PYTHON: '3.9'
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: ‘2’
- name: Setup Python
uses: actions/setup-python@master
with:
python-version: 3.8
- name: Generate Report
run: |
pip install -r requirements.txt
pip install pytest coverage
coverage run -m pytest
- name: Upload Coverage to Codecov
uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}