Generate references for actions and workflows #106
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 Check | |
on: | |
pull_request: | |
jobs: | |
pre-commit-check: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Installation | |
run: | | |
brew install pre-commit | |
brew install tj-actions/tap/auto-doc | |
working-directory: . | |
- name: Run pre-commit | |
run: | | |
pre-commit run | |
working-directory: . |