Skip to content

Commit

Permalink
Create proselint.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
BaseMax authored Oct 31, 2024
1 parent 7b012fc commit 4a53387
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/proselint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Proselint Linting

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
proselint:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.8'

- name: Install Proselint
run: |
pip install proselint
- name: Run Proselint
run: |
proselint **/*.md # Adjust the file pattern if needed

0 comments on commit 4a53387

Please sign in to comment.