Skip to content

Commit

Permalink
pytest with pypolymlp on github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
atztogo committed Oct 9, 2024
1 parent fa76941 commit 170ebde
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/phono3py-pytest-conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,18 @@ jobs:
- uses: conda-incubator/setup-miniconda@v3
with:
miniforge-version: latest
- name: Install dependent packages
- name: Install dependent packages for python > 3.9
if: ${{ matrix.python-version != 3.9 }}
run: |
conda activate test
conda install --yes python=${{ matrix.python-version }}
conda install --yes matplotlib-base pyyaml "libblas=*=*openblas" openblas h5py "numpy>=2.1" scipy pytest spglib alm cmake c-compiler cxx-compiler pypolymlp symfc
- name: Install dependent packages for python == 3.9
if: ${{ matrix.python-version == 3.9 }}
run: |
conda activate test
conda install --yes python=${{ matrix.python-version }}
conda install --yes matplotlib-base pyyaml "libblas=*=*openblas" openblas h5py scipy pytest spglib alm cmake c-compiler cxx-compiler symfc
- name: Install phonopy develop branch
run: |
conda activate test
Expand Down

0 comments on commit 170ebde

Please sign in to comment.