Generate references for actions and workflows #95
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: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v3 | |
- name: Run pre-commit | |
run: | | |
python -m pip install --upgrade pip | |
pip install pre-commit | |
go install github.com/tj-actions/auto-doc@latest | |
# go install github.com/tj-actions/auto-doc@v3 | |
pre-commit install | |
pre-commit run --all-files | |
working-directory: . |