Skip to content

CI: another missing dependency #5

CI: another missing dependency

CI: another missing dependency #5

Workflow file for this run

name: test
on:
push:
branches:
- main
- master
tags:
- '*'
pull_request:
workflow_dispatch:
defaults:
run:
working-directory: ./py
permissions:
contents: read
jobs:
linux:
runs-on: ubuntu-latest
strategy:
matrix:
target: [x86_64, x86, aarch64, armv7, s390x, ppc64le]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.target }}
args: --release --out dist
sccache: 'true'
manylinux: auto
working-directory: py
- name: Install package
run: pip install dist/*.whl
- name: Run tests
run: |
pip install pytest pandas scipy
pytest