Skip to content

Commit

Permalink
build: run python tests in GitHub Actions (#151)
Browse files Browse the repository at this point in the history
  • Loading branch information
maartenflippo authored Feb 13, 2025
1 parent c29fc4c commit 2462937
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,22 @@ jobs:
- uses: dtolnay/rust-toolchain@stable
- run: cargo test --release --no-fail-fast

pumpkin-py:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.x
- name: Install pytest
run: pip install pytest
- name: Install pumpkin-py
run: pip install -e .
working-directory: pumpkin-py
- name: Run tests
run: pytest
working-directory: pumpkin-py

docs:
name: Documentation
runs-on: ubuntu-latest
Expand Down

0 comments on commit 2462937

Please sign in to comment.