Skip to content

update to newest gertils version #20

update to newest gertils version

update to newest gertils version #20

Workflow file for this run

name: lint
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
lint:
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12"]
os: [ubuntu-22.04]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install project
run: pip install .[linting]
- name: Run mypy on Python ${{ matrix.python-version }} on ${{ matrix.os }}
run: mypy
- name: Run ruff on Python ${{ matrix.python-version }} on ${{ matrix.os }}
run: ruff check .