Fix linking with newer rust versions. #59
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 Tests | |
on: [push, pull_request] | |
jobs: | |
python-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v1 | |
- name: Install latest rust toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: 1.63.0 | |
override: true | |
- name: install python dependencies | |
run: pip3 install setuptools-rust nose | |
- name: install python bindings | |
run: python3 setup.py install --user | |
- name: run Tests | |
run: nosetests |