chore(deps): bump actions/stale from 8 to 9 #468
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: check | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
lint: | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] | |
os: [ubuntu-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
id: cpython_setup | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: pip | |
- run: pip install '.[lint]' | |
- run: ruff check --diff src tests | |
- run: ruff format --diff src tests | |
type: | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] | |
os: [ubuntu-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
id: cpython_setup | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: pip | |
- run: pip install '.[types]' | |
- run: mypy src |