Skip to content

testing fix for #98 #89

testing fix for #98

testing fix for #98 #89

Workflow file for this run

name: lint
on:
push:
pull_request:
env:
FORCE_COLOR: 1
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
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@v2
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