Skip to content

Commit

Permalink
Merge pull request #121 from e10v/dev
Browse files Browse the repository at this point in the history
Convert examples to pycon with prompts and add doctest to CI
  • Loading branch information
e10v authored Jan 7, 2025
2 parents 9b64467 + 7b5ef90 commit 35c1ff8
Show file tree
Hide file tree
Showing 18 changed files with 1,525 additions and 1,401 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,3 +55,22 @@ jobs:
run: pdm run lint
- name: Check with pyright
run: pdm run type

doctest:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.10"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up PDM
uses: pdm-project/setup-pdm@v4
with:
python-version: ${{ matrix.python-version }}
cache: true
- name: Install dependencies
run: pdm sync -G test
- name: Doctest
run: pdm run doctest
Loading

0 comments on commit 35c1ff8

Please sign in to comment.