TeNeS 2.0.0 #199
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: main | |
on: [push] | |
jobs: | |
apps: | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
app: [tenes, komega, hphi, mvmc, openmx, dsqss, espresso_respack, lammps, py2dmat, physbo] | |
fail-fast: false | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: apt | |
run: | | |
sudo apt-get update | |
sudo apt-get -y install openmpi-bin libopenmpi-dev libscalapack-openmpi-dev libfftw3-dev | |
- name: pip | |
run: | | |
python3 -m pip install -U pip | |
python3 -m pip install numpy scipy toml setuptools | |
- name: setup | |
run: sh setup/setup.sh | |
- name: test | |
run: sh .github/scripts/test.sh ${{matrix.app}} |