Surface #482
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: tests | |
on: [push, pull_request] | |
jobs: | |
test-linux: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- run: sudo apt-get install cmake libblas-dev liblapack-dev python3-setuptools python3-pip python3-dev python3-nose | |
- run: pip3 install --user wheel | |
- run: pip3 install --user -r requirements.txt | |
- run: nosetests3 | |