Feature/edit menu confirm stage #53
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 workflow | |
on: | |
pull_request: | |
types: [opened, reopened, synchronize] | |
branches: [master, develop] | |
jobs: | |
pre-commit: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check git and repo | |
uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.9 | |
- name: Setup and run pre-commit checks | |
uses: pre-commit/action@v3.0.0 | |
with: | |
extra_args: --all-files --verbose | |
- name: Print git diff after changes from pre-commit | |
run: git diff |