Bump version for publication #20
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
CI: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: "3.10" | |
- name: Build Wheel | |
uses: messense/maturin-action@v1 | |
with: | |
manylinux: off | |
args: --find-interpreter | |
- uses: abatilo/actions-poetry@v2.3.0 | |
- name: Run Tests | |
run: | | |
poetry install | |
poetry run maturin develop | |
poetry run pytest |