Skip to content

Commit

Permalink
add doc_consistency job
Browse files Browse the repository at this point in the history
  • Loading branch information
jfolz committed Jul 31, 2024
1 parent 73cea25 commit 26399fb
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,24 @@ name: Build
on: [push, pull_request]

jobs:
doc_consistency:
name: Test consistency of docs
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Setup Rust
uses: hecrj/setup-rust-action@v2
with:
profile: minimal
- name: Install dependencies
run: pip install mypy
- name: Build package
run: pip install --no-cache-dir --editable .
- name: Run stubtest
run: stubtest ducer
- name: Run docstring check
run: python check_docstrings.py
build_wheels:
name: Build wheels on ${{ matrix.os }} ${{ matrix.arch }}
runs-on: ${{ matrix.os }}
Expand Down

0 comments on commit 26399fb

Please sign in to comment.