Skip to content

Bump mikepenz/action-junit-report from 4 to 5 #76

Bump mikepenz/action-junit-report from 4 to 5

Bump mikepenz/action-junit-report from 4 to 5 #76

Workflow file for this run

name: linting
on:
pull_request:
push:
branches:
- "main"
jobs:
linting:
strategy:
fail-fast: true
matrix:
python: ["3.8", "3.9", "3.10", "3.11", "3.12"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox
- name: Analysing formatting
run: |
tox -e format-check
- name: Analysing the code style
run: |
tox -e codestyle
- name: Analysing the docstyle
run: |
tox -e docstyle
- name: Analysing the code with mypy
run: |
tox -e types
- name: Analysing the code with pylint/flake
run: |
tox -e errors