Skip to content

Bump actions/download-artifact from 2 to 4.1.7 in /.github/workflows #31

Bump actions/download-artifact from 2 to 4.1.7 in /.github/workflows

Bump actions/download-artifact from 2 to 4.1.7 in /.github/workflows #31

Workflow file for this run

name: ✅ tests and coverage
on:
pull_request:
push:
branches: [master]
jobs:
testing:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r ci/requirements-core.txt -r ci/requirements-test.txt
- name: Install pytest-cov, codecov
run: |
python -m pip install pytest-cov codecov
- name: Test with pytest
run: |
python -m pytest --cov=./
- name: Upload to CodeCov
uses: codecov/codecov-action@v1