Skip to content

Commit

Permalink
Create check_docstrings.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
LiamConnors committed Nov 26, 2024
1 parent 8a13eb1 commit e921800
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/check_docstrings.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Check docstrings

on: [push, pull_request]

jobs:
check_docstrings:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install uv
uses: astral-sh/setup-uv@v3
- name: install-reqs
run: uv pip install mypy -r requirements-dev.txt
- name: Run docstring check
run: python utils/check_docstrings.py

0 comments on commit e921800

Please sign in to comment.