Skip to content

Merge pull request #47 from sdglitched/renovate/coverage-7.x-lockfile #134

Merge pull request #47 from sdglitched/renovate/coverage-7.x-lockfile

Merge pull request #47 from sdglitched/renovate/coverage-7.x-lockfile #134

Workflow file for this run

---
name: Checking code quality
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
ci-qlty:
runs-on: ubuntu-latest
container: fedorapython/fedora-python-tox:latest
strategy:
fail-fast: false
matrix:
tox-env: ["py312","py313"]
steps:
- name: Checkout the codebase current state
uses: actions/checkout@v4
- name: Install the base dependencies
run: python3 -m pip install --upgrade poetry tox
- name: Check the correctness of the project config
run: poetry check
- name: Check the quality of the code
run: tox -e cleaning