chore(deps): update pre-commit hook gruntwork-io/pre-commit to v0.1.23 (.pre-commit-config.yaml) (master) - autoclosed #132
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-validate | |
# This workflow is triggered on pushes to the repository. | |
on: [push, pull_request] | |
jobs: | |
validation: | |
name: pre-commit-validate | |
runs-on: macOS-latest | |
steps: | |
- uses: actions/checkout@master | |
with: | |
fetch-depth: '1' | |
- name: Install Deps | |
run: | | |
brew install pre-commit shellcheck | |
- name: Check All Files | |
run: | | |
pre-commit run --all-files |