Skip to content

Commit

Permalink
ci: add tasks to check options and casing
Browse files Browse the repository at this point in the history
  • Loading branch information
zieka committed Aug 31, 2023
1 parent f4399d4 commit f1c6883
Show file tree
Hide file tree
Showing 6 changed files with 643 additions and 10 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Run quality checks

# on all branches
on:
push:
branches:
- '*'

jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ".[ci]"
- name: Check sentence casing
run: |
poe check-sentence-casing
- name: Check options
run: |
poe check-options
Loading

0 comments on commit f1c6883

Please sign in to comment.