name: Test
on:
push:
branches:
pull_request:
branches:
jobs:
test:
runs-on: ubuntu-latest
name: Test
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- uses: messense/maturin-action@v1
with:
maturin-version: latest
command: build
args: --features=python
- name: Test
run: |
python -m pip install --upgrade pip
pip install target/wheels/ragged_buffer-*.whl
python tests/test.py