Skip to content

fix: Import ParamSpec from typing_extensions #88

fix: Import ParamSpec from typing_extensions

fix: Import ParamSpec from typing_extensions #88

Workflow file for this run

name: Pre-commit
on:
workflow_dispatch:
push:
branches-ignore:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install poetry
poetry config virtualenvs.in-project true
poetry install --with dev
- uses: pre-commit/[email protected]
- uses: pre-commit-ci/[email protected]
if: always()