Skip to content

chore(deps-dev): Bump the dev group with 3 updates #247

chore(deps-dev): Bump the dev group with 3 updates

chore(deps-dev): Bump the dev group with 3 updates #247

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: astral-sh/ruff-action@v2
with:
version: 0.8.2
src: "./pydid"
- uses: astral-sh/ruff-action@v2
with:
version: 0.8.2
src: "./pydid"
args: format --check
test:
name: Tests
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
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