Skip to content
This repository has been archived by the owner on Oct 11, 2024. It is now read-only.

Merge pull request #5 from pyiron-dev/conda #9

Merge pull request #5 from pyiron-dev/conda

Merge pull request #5 from pyiron-dev/conda #9

Workflow file for this run

name: Notebook 3.11
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.11'
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: 60
run: |
bash postBuild
conda install -y papermill jupyter
sudo apt-get install -y $(cat apt.txt)
papermill demo_graph.ipynb demo_graph_out.ipynb -k "python3"