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

Resolve test issue #1100

Resolve test issue

Resolve test issue #1100

Workflow file for this run

name: Notebooks
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build_damask:
if: |
github.event_name == 'push' ||
( github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'integration' ))
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: conda-incubator/[email protected]
with:
python-version: "3.11"
mamba-version: "*"
miniforge-variant: Mambaforge
channels: conda-forge
channel-priority: strict
auto-update-conda: true
environment-file: .ci_support/environment.yml
- name: Setup
shell: bash -l {0}
run: |
pip install --no-deps .
mamba env update --name test --file .ci_support/environment-notebooks-damask.yml
- name: Tests
shell: bash -l {0}
run: ./.ci_support/build_notebooks_damask.sh
build_fenics:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: conda-incubator/[email protected]
with:
python-version: "3.11"
mamba-version: "*"
miniforge-variant: Mambaforge
channels: conda-forge
channel-priority: strict
auto-update-conda: true
environment-file: .ci_support/environment.yml
- name: Setup
shell: bash -l {0}
run: |
pip install --no-deps .
mamba env update --name test --file .ci_support/environment-notebooks-fenics.yml
- name: Tests
shell: bash -l {0}
run: ./.ci_support/build_notebooks_fenics.sh