Bump ndarray from 0.15.4 to 0.16.1 #33
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: Python | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
test-python: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: install maturin (to be included in pyproject) | |
run: pip3 install maturin pytest numpy | |
- name: install | |
run: pip3 install . | |
- name: Build | |
run: maturin build | |
- name: test | |
run: pytest tests |