affinereg, style #325
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: C/C++ CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: update | |
run: sudo apt-get install -q gcc make libfftw3-dev liblapacke-dev libpng-dev libopenblas-dev gfortran | |
- name: make all | |
run: make all | |
- name: make utest | |
run: make utest | |
- name: make test | |
run: make test | |
- name: make pythontest | |
run: | | |
sudo apt-get install -q python3 python3-numpy | |
make pythontest |