Skip to content

Improve coveralls in github workflow #253

Improve coveralls in github workflow

Improve coveralls in github workflow #253

Workflow file for this run

name: Run tests and style checks
on:
pull_request:
push:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version:
- "3.10"
- "3.11"
- "3.12"
django-version:
- ">=4.0,<4.1"
- ">=4.1,<4.2"
- ">=4.2,<4.3"
- ">=5.0,<5.2"
name: Python ${{ matrix.python-version }} - Django ${{ matrix.django-version }}
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
uses: snok/install-poetry@v1
with:
version: latest
virtualenvs-create: true
virtualenvs-in-project: true
installer-parallel: true
- name: Cache poetry dependencies
id: cached-poetry-dependencies
uses: actions/cache@v4
with:
path: .venv
key: ${{ runner.os }}-poetry-${{ matrix.python-version }}-${{ hashFiles('**/poetry.lock') }}
- name: Install local dependencies
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: poetry install --no-interaction
- name: Install Django
run: |
poetry run pip install 'django${{ matrix.django-version }}'
- name: Prepare env
run: |
poetry run inv ci.prepare
- name: Run checks ${{ matrix.python-version }}
run: poetry run inv pre-commit.run-hooks
- name: Coveralls Upload
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
flag-name: Python${{ matrix.python-version }} - Django${{ matrix.django-version }}
file: .coverage
parallel: true
coveralls-finish:
needs: test
if: ${{ always() }}
runs-on: ubuntu-latest
steps:
- name: Coveralls Finished
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
parallel-finished: true
carryforward: "Python3.12 - Django>=5.0,<5.2"