Skip to content

Commit

Permalink
Pydocstyle checker on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
tisnik committed Oct 2, 2024
1 parent 5fd8fb7 commit 06e5423
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/black.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Lint
name: Black

on: [push, pull_request]

Expand Down
13 changes: 13 additions & 0 deletions .github/workflows/pydocstyle.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: Pydocstyle

on: [push, pull_request]

jobs:
mypy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Pydocstyle install
run: pip install --user pydocstyle
- name: Python docstring checks
run: pydocstyle -v .
2 changes: 1 addition & 1 deletion .github/workflows/radon.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Lint
name: Radon

on: [push, pull_request]

Expand Down

0 comments on commit 06e5423

Please sign in to comment.