Skip to content

Add build script

Add build script #46

Workflow file for this run

name: CI
on:
push:
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
build_and_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.10'
- run: cargo build --release --all-features
- run: cargo build --verbose
- run: cargo test --verbose
- run: python3 -m pip install '.[test]'
- run: python3 -m pytest