Bump pytest-asyncio from 0.23.4 to 0.23.5 #13
Workflow file for this run
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: Typing and Linting | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
workflow_dispatch: | |
env: | |
DEFAULT_PYTHON: "3.11" | |
jobs: | |
typing-and-linting: | |
name: Run pre-commit hooks | |
runs-on: ubuntu-latest | |
steps: | |
- name: ⤵️ Checkout code | |
uses: actions/[email protected] | |
- name: 🐍 Setup Python ${{ env.DEFAULT_PYTHON }} | |
uses: actions/[email protected] | |
with: | |
python-version: ${{ env.DEFAULT_PYTHON }} | |
- name: 🚧 Install dependencies | |
run: pip install . .[test] | |
- name: 🚀 Run pre-commit hooks | |
run: | | |
pre-commit run check-yaml --all-files | |
pre-commit run check-toml --all-files | |
pre-commit run check-ast --all-files | |
pre-commit run check-docstring-first --all-files | |
pre-commit run debug-statements --all-files | |
pre-commit run end-of-file-fixer --all-files | |
pre-commit run trailing-whitespace --all-files | |
pre-commit run ruff --all-files | |
pre-commit run ruff-format --all-files | |
pre-commit run black --all-files | |
pre-commit run codespell --all-files | |
pre-commit run mypy --all-files | |
pre-commit run pylint --all-files |