Skip to content

Bump pytest-asyncio from 0.21.1 to 0.21.2 #907

Bump pytest-asyncio from 0.21.1 to 0.21.2

Bump pytest-asyncio from 0.21.1 to 0.21.2 #907

Workflow file for this run

name: "Lint code"
on:
pull_request:
jobs:
pre-commit:
name: "Pre-commit"
runs-on: "ubuntu-latest"
steps:
- name: "⤵️ Check out code from GitHub"
uses: "actions/checkout@v4"
- name: "🐍 Set up Python"
uses: "actions/setup-python@v5"
with:
python-version: 3.9
- name: "⚙️ Install Poetry"
uses: "abatilo/actions-poetry@v3.0.0"
with:
poetry-version: 1.5.1
- name: "⚙️ Install dependencies"
run: "poetry install"
- name: "🚀 Run pre-commit on all files"
run: |
poetry run pre-commit run --all-files --show-diff-on-failure --color=always