Merge pull request #51 from materialdigital/pyiron_base #117
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: pyiron | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: conda-incubator/setup-miniconda@v3 | |
with: | |
auto-update-conda: true | |
python-version: "3.11" | |
environment-file: environment.yml | |
auto-activate-base: false | |
- name: Tests | |
shell: bash -l {0} | |
run: | | |
pip install -e aiida_qe_basic | |
conda install -c conda-forge jupyter papermill | |
export ESPRESSO_PSEUDO=$(pwd)/espresso/pseudo | |
papermill pyiron_base.ipynb pyiron_base-out.ipynb -k "python3" |