Skip to content

More tests and hacks for minus zero #13

More tests and hacks for minus zero

More tests and hacks for minus zero #13

Workflow file for this run

name: Test Rust Python Integration
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest maturin pydantic
- name: Build Rust project
run: |
maturin build
pip install target/wheels/*
- name: Run Python tests
run: |
pytest