Backport hooktest fix from https://github.com/PerseusDL/canonical-greekLit/pull/1521 #4
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: PR_HookTest | |
# Performs Hooktest on Pull Request | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
hooktest: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
# Setup Python | |
- name: Set up Python 3.11 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.11' | |
# Display Version | |
- name: Install Hooktest | |
run: pip3 install HookTest | |
- name: Run Hooktest | |
run: hooktest ./ --console table --scheme epidoc --workers 3 --verbose 5 --countword |