Fix pre-commit workflow

This commit is contained in:
Mike Almeloo
2024-02-11 15:46:35 +01:00
committed by GitHub
parent 4e96ddc5e1
commit 2fd5920feb

View File

@@ -1,4 +1,4 @@
name: Deploy documentation
name: Pre-commit
on:
workflow_dispatch:
@@ -17,6 +17,12 @@ jobs:
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
- uses: pre-commit/action@v3.0.1