Skip to content

Commit

Permalink
Merge pull request #9 from PerseusDL/lcerrato-actions
Browse files Browse the repository at this point in the history
Create PR_HookTest.yml
  • Loading branch information
lcerrato authored Nov 23, 2021
2 parents 3926dda + 2ffe690 commit 2770193
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/PR_HookTest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
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.x
uses: actions/setup-python@v2
with:
# Semantic version range syntax or exact version of a Python version
python-version: '3.x'
# Display Version
- name: Install Hooktest
run: pip3 install HookTest
- name: Run Hooktest
run: hooktest ./ --console table --scheme epidoc --workers 3 --verbose 5 --countword

0 comments on commit 2770193

Please sign in to comment.