Added documentation for --simulate #482
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: Run markdowner.py on all markdown files and see if there are changes | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
workflow_dispatch: | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checks-out repository | |
uses: actions/checkout@v2 | |
- name: Set up Python 3.7 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: "3.7" | |
- name: Run markdowner.py to (hopefully not) edit markdown files | |
run: | | |
# TODO: Fix last warnings in output of script and ensure no warnings here | |
find . -name '*.markdown' -type f -exec python3 .github/workflows/markdowner.py {} all \; | |
- name: Check if there are changes | |
run: | | |
git diff --exit-code |