Skip to content

chore(deps): bump actions/stale from 8 to 9 #468

chore(deps): bump actions/stale from 8 to 9

chore(deps): bump actions/stale from 8 to 9 #468

Workflow file for this run

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