# This file is autogenerated by maturin v1.7.7 # To update, run # # maturin generate-ci github # name: Test on: push: branches: - main - develop pull_request: workflow_dispatch: permissions: contents: read jobs: linux: runs-on: - ubuntu-latest steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v5 with: python-version: 3.x - name: Build and Install run: | python -m pip install ".[dev]" - name: Test run: | pytest