Skip to content

Enable the warnings on the tests files #20

Enable the warnings on the tests files

Enable the warnings on the tests files #20

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 pre-commit .[with_everything] types-PyYAML
- 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: pre-commit run prospector --all-files