Backport of commit from Celery branch to fix off by one error #299
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI/CD | |
on: | |
push: | |
branches: | |
- "*" | |
tags: | |
- "*" | |
pull_request: | |
jobs: | |
test: | |
strategy: | |
matrix: | |
python-version: [3.9, "3.10"] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4.0.0 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4.7.0 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install poetry | |
uses: Gr1N/setup-poetry@v8 | |
- name: Install dependencies | |
run: | | |
poetry install --with dev | |
pip list | |
- name: Lint with Flake8 | |
run: | | |
poetry run flake8 | |
- name: Test with pytest | |
run: | | |
poetry run coverage run -m --source=src pytest tests | |
poetry run coverage xml | |
- name: Report coverage using codecov | |
if: github.event_name == 'push' && matrix.python-version == 3.9 | |
uses: codecov/codecov-action@v3.1.4 | |
with: | |
file: ./coverage.xml # optional | |
flags: unittests # optional |