Bump abatilo/actions-poetry from 3.0.1 to 4.0.0 (#159) #273
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: | |
branches: [main] | |
pull_request: | |
jobs: | |
black: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
- uses: psf/black@main | |
mypy: | |
runs-on: ubuntu-latest | |
name: Mypy | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.13.1" | |
- name: Install Dependencies | |
run: | | |
pip install mypy types-requests types-beautifulsoup4 | |
- name: mypy | |
run: | | |
mypy --ignore-missing-imports fa_scraper/ | |
isort: | |
runs-on: ubuntu-latest | |
name: isort | |
steps: | |
- name: python-isort | |
uses: isort/[email protected] | |
poetry-check: | |
runs-on: ubuntu-latest | |
name: poetry check | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12.3" | |
- uses: abatilo/[email protected] | |
with: | |
poetry-version: "2.0.1" | |
- name: Poetry check | |
run: | | |
poetry check --strict |