Skip to content

Generate references for actions and workflows #95

Generate references for actions and workflows

Generate references for actions and workflows #95

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: .