Skip to content

chore(deps-dev): Bump pytest-asyncio from 0.23.7 to 0.23.8 #175

chore(deps-dev): Bump pytest-asyncio from 0.23.7 to 0.23.8

chore(deps-dev): Bump pytest-asyncio from 0.23.7 to 0.23.8 #175

Workflow file for this run

name: Checks
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
format:
name: Format and Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: psf/black@24.4.2
with:
src: "./pydid"
- uses: chartboost/ruff-action@v1
with:
version: 0.3.4
test:
name: Tests
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v4
- name: Install poetry
run: pipx install poetry
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: poetry
- name: Install dependencies
run: poetry install
- name: Run pytest
run: poetry run pytest