fixbug: #1422 Role's validate_role_extra resets watch in Environment obj deserialization #1842
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Pre-commit checks | |
on: | |
pull_request: | |
branches: | |
- '**' | |
push: | |
branches: | |
- '**' | |
jobs: | |
pre-commit-check: | |
runs-on: ubuntu-latest | |
environment: pre-commit | |
steps: | |
- name: Checkout Source Code | |
uses: actions/checkout@v2 | |
- name: Setup Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.9.17' | |
- name: Install pre-commit | |
run: pip install pre-commit | |
- name: Initialize pre-commit | |
run: pre-commit install | |
- name: Run pre-commit hooks | |
run: pre-commit run --all-files |