Skip to content

Drop 3.8 and add 3.13 #179

Drop 3.8 and add 3.13

Drop 3.8 and add 3.13 #179

Workflow file for this run

name: lint
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
lint:
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install flake8
run: pip install flake8
- name: Run flake8
run: flake8 --exclude src/objprint/executing src/ tests/ --count --ignore=W503 --max-line-length=127 --statistics
- name: Install mypy
run: pip install mypy
- name: Run mypy
run: mypy src/ --exclude src/objprint/executing --follow-imports=skip