Skip to content

Merge branch 'release/2.10.1' #47

Merge branch 'release/2.10.1'

Merge branch 'release/2.10.1' #47

Workflow file for this run

name: lint
on:
push:
pull_request:
env:
FORCE_COLOR: 1
jobs:
lint:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.8', '3.8', '3.10', '3.11']
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Python version
run: python --version
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel mypy
python -m pip install -e '.[tests]'
- name: Linting with pyright
uses: jakebailey/pyright-action@v1
with:
path: portalocker portalocker_tests
- name: Linting with ruff
uses: jpetrucciani/ruff-check@main
with:
extra-args: portalocker portalocker_tests
- name: Linting with mypy
run: |
python -m mypy portalocker portalocker_tests