Skip to content

[maintenance] Remove twine from the dev dependencies #46

[maintenance] Remove twine from the dev dependencies

[maintenance] Remove twine from the dev dependencies #46

Workflow file for this run

name: pre-commit
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- run: pip install poetry
- run: poetry install --all-extras --all-groups
- run: poetry run pip install pre-commit
- uses: actions/cache@v4
with:
path: ~/.cache/pre-commit
key: pre-commit-${{ hashFiles('.pre-commit-config.yaml') }}
restore-keys: |-
pre-commit-${{ hashFiles('.pre-commit-config.yaml') }}
pre-commit-
- name: Check pre-commit
run: poetry run pre-commit run prospector --all-files