Skip to content

Commit

Permalink
Merge branch 'develop' into release-2024.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kwabenantim committed Apr 11, 2024
2 parents 6b5643d + dae151b commit b8fbacc
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/test-conda.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: test-conda

on:
workflow_dispatch:
schedule:
- cron: "19 04 * * 6"

jobs:
test-conda:
runs-on: ubuntu-latest

steps:
- name: install dependencies
run: |
sudo apt-get update
sudo apt-get install -y xvfb
- name: setup conda
uses: conda-incubator/setup-miniconda@v3
with:
auto-update-conda: true
use-mamba: true
miniforge-variant: Mambaforge
miniforge-version: latest
python-version: "3.10"
activate-environment: pychaste_test
channels: pychaste,conda-forge,bioconda

- name: install pychaste
run: mamba install -n pychaste_test -y chaste

- name: test imports
run: |
python3 -c "import chaste; chaste.init(); import chaste.ode; import chaste.pde; import chaste.mesh; import chaste.cell_based;"
shell: bash -el {0}

0 comments on commit b8fbacc

Please sign in to comment.