Skip to content

ci:(deps): bump actions/checkout from 2 to 4 #69

ci:(deps): bump actions/checkout from 2 to 4

ci:(deps): bump actions/checkout from 2 to 4 #69

Workflow file for this run

name: CodeCov
on: [push, pull_request]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
coverage:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: [3.8, 3.9, "3.10", "3.11"] # latest release minus two
requirements-file: [
requirements.txt,
]
os: [
ubuntu-20.04,
]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: '2'
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Generate Report
run: |
pip install -r tests/${{ matrix.requirements-file }}
coverage run setup.py test
- name: Upload Coverage to Codecov
uses: codecov/codecov-action@v3