Add lint and build actions #1

Manually merged
MichaelBradley merged 30 commits from actions into main 2025-02-23 06:10:41 -05:00
Showing only changes of commit 0fe8bd7de0 - Show all commits

View file

@ -31,7 +31,7 @@ jobs:
run: cargo clippy -- -D warnings
build:
name: Build
name: Build (and test, for now)
runs-on: docker
steps:
- name: Checkout
@ -54,3 +54,11 @@ jobs:
run: |
source venv/bin/activate
maturin develop
- name: Run Python tests
run: |
source venv/bin/activate
pytest tests/*.py
- name: Run Rust tests
run: |
source venv/bin/activate
cargo test