Skip to content

Bump pytest-asyncio from 0.21.0 to 0.21.1 (#299) #295

Bump pytest-asyncio from 0.21.0 to 0.21.1 (#299)

Bump pytest-asyncio from 0.21.0 to 0.21.1 (#299) #295

Workflow file for this run

name: "Formatting"
on: [push]
jobs:
black:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.11"]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox
- name: Run Code Formatter Checks
run: |
tox -e formatting