Skip to content

Commit

Permalink
test CI
Browse files Browse the repository at this point in the history
  • Loading branch information
yumengch committed Feb 28, 2022
1 parent 4d729e7 commit b7b21d7
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: test
on: [push]
jobs:
check_installation:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: sudo apt install -y liblapack-dev libblas-dev libopenmpi-dev
- name: get PDAF
run: |
wget -O PDAF-D_V1.16.tar.gz "${{ env.PDAF_LINK }}"
tar -zxvf PDAF-D_V1.16.tar.gz
env:
PDAF_LINK: ${{ secrets.PDAF116_LINK }}
- name: install pyPDAF
run: pip install .
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ install_requires =
numpy

[PDAF]
directory=../PDAF-D_V1.16
directory=PDAF-D_V1.16
FC = mpif90
OPT = -O3 -fdefault-real-8 -fPIC
INC = -I../PDAF-D_V1.16/include
INC = -IPDAF-D_V1.16/include
LINK_LIBS = -llapack -lblas
CPP_DEFS = -DUSE_PDAF

0 comments on commit b7b21d7

Please sign in to comment.