Skip to content

Update dependencies versions and readme #32

Update dependencies versions and readme

Update dependencies versions and readme #32

Workflow file for this run

name: CI
on:
push:
paths:
- '**.py'
pull_request:
paths:
- '**.py'
workflow_dispatch:
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up PDM
uses: pdm-project/setup-pdm@v4
with:
python-version: ${{ matrix.python-version }}
cache: true
- name: Install dependencies
run: pdm sync -G :all
- name: Check with ruff
run: pdm run lint
- name: Check with pyright
run: pdm run type