Bug fix read pseudos #81
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: Make | |
on: | |
pull_request: | |
branches: | |
- master | |
push: | |
branches: | |
- master | |
jobs: | |
gfortran: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up git user | |
run: | | |
git config --global user.name "koopmans-kcp-tester" | |
git config --global user.email ${{ secrets.TESTER_EMAIL }} | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install gfortran libopenmpi-dev libblas-dev liblapack-dev fftw3-dev | |
- name: Configure | |
run: | | |
./configure MPIF90=mpif90 | |
- name: Build | |
run: | | |
make all | |
- name: Test | |
run: | | |
make check | |
- name: Upload | |
if: success() || failure() | |
uses: actions/upload-artifact@v3 | |
with: | |
name: test-data | |
path: | | |
tests/*/test.out.* | |