Create proselint.yml #12
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: Proselint Check | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the code | |
uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.x' | |
- name: Install Proselint | |
run: | | |
python -m pip install --upgrade pip | |
pip install proselint | |
- name: Run Proselint on Markdown files | |
run: | | |
# Find all Markdown files and pass them to Proselint | |
files=$(find . -name "*.md") | |
if [ -n "$files" ]; then | |
proselint $files | |
else | |
echo "No Markdown files found to lint." | |
fi | |
continue-on-error: false # Set to true if you want to allow warnings without failing | |
- name: Upload Proselint report | |
if: failure() | |
run: | | |
echo "Proselint found issues in the following files:" | |
find . -name "*.md" -exec proselint {} \; || echo "No issues found." |