Skip to content

fix maturin to 1.4.0 #15

fix maturin to 1.4.0

fix maturin to 1.4.0 #15

Workflow file for this run

name: Test-py
on:
push:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip install ".[dev]"
- name: Test with pytest
run: pytest tests