This repository has been archived by the owner on Oct 3, 2024. It is now read-only.
Update pyiron_atomistics to 0.6.13 #8
Workflow file for this run
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: Integrationtests | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Mambaforge | |
uses: conda-incubator/setup-miniconda@v2 | |
with: | |
python-version: "3.12" | |
miniforge-variant: Mambaforge | |
channels: conda-forge | |
channel-priority: strict | |
activate-environment: my-env | |
environment-file: environment.yml | |
use-mamba: true | |
- name: Test | |
shell: bash -l {0} | |
timeout-minutes: 5 | |
run: | | |
pip install . | |
papermill lammps.ipynb lammps_out.ipynb -k python3 | |
papermill sphinxdft.ipynb sphinxdft_out.ipynb -k python3 |