Skip to content

Merge pull request #4 from maykinmedia/feature/maak-klant-contact-sug… #32

Merge pull request #4 from maykinmedia/feature/maak-klant-contact-sug…

Merge pull request #4 from maykinmedia/feature/maak-klant-contact-sug… #32

Workflow file for this run

name: Code quality checks
on:
push:
branches:
- main
tags:
- "*"
pull_request:
workflow_dispatch:
jobs:
linting:
name: Code-quality checks
runs-on: ubuntu-latest
strategy:
matrix:
toxenv:
- ruff
# - docs
# - typecheck
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies
run: pip install tox
- run: tox
env:
TOXENV: ${{ matrix.toxenv }}