Skip to content

CI: build for multiple OS #17

CI: build for multiple OS

CI: build for multiple OS #17

name: Build and test
on:
push:
branches: [ main, dev ]
pull_request:
branches: [ main, dev ]
workflow_dispatch:
jobs:
build_and_test:
strategy:
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Setup Poetry
run: |
curl -fsS https://install.python-poetry.org | python - -y
echo "$HOME/.local/bin" >> $GITHUB_PATH
- name: Install dependencies
run: |
poetry install
- name: Build
run: |
poetry run maturin build
poetry run maturin develop
- name: Run tests
run: |
poetry run python example.py