Added NamedBoundedSemaphore to fix #87 #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: lint | |
on: | |
push: | |
pull_request: | |
env: | |
FORCE_COLOR: 1 | |
jobs: | |
tox: | |
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: | |
extra-args: 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 | |