Partly fix FSI tests (parallel Taylor-Hood test currently fails\!) #293
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
# tests installation of Ambit in devenv Docker container and execution of tests | |
name: testing | |
on: | |
push | |
jobs: | |
container-job: | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/marchirschvogel/ambit:devenv | |
steps: | |
- name: Checkout Ambit | |
run: git clone https://github.com/marchirschvogel/ambit.git | |
- name: Install latest Ambit dev version | |
run: python3 -m pip install git+https://github.com/marchirschvogel/ambit.git --no-cache-dir | |
- name: Switch to Ambit tests folder | |
run: cd ambit/tests | |
- name: Run Ambit tests | |
run: pytest |