Skip to content

ci

ci #54

Workflow file for this run

name: Test
on:
push:
branches:
- citest
pull_request:
branches:
- citest
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- uses: actions/setup-python@v2
with:
python-version: "3.9"
- name: Setup Python and Run Tests
working-directory: ./src/python
run: |
python3 -m pip install .
pip install pytest maturin
maturin develop --release
pytest