Skip to content

openmmtools Install Check #518

openmmtools Install Check

openmmtools Install Check #518

name: "openmmtools Install Check"
on:
pull_request:
branches:
- main
push:
branches:
- main
schedule:
# At 07:00 UTC everyday.
- cron: "0 7 * * *"
concurrency:
group: "${{ github.workflow }}-${{ github.ref }}"
cancel-in-progress: true
defaults:
run:
shell: bash -l {0}
jobs:
openmmtools-install-check:
name: Test on ${{ matrix.OS }}-latest, Python ${{ matrix.python-version }}, openmmtools ${{ matrix.openmmtools-version }}
runs-on: ${{ matrix.OS }}-latest
strategy:
fail-fast: false
matrix:
os: ['ubuntu', 'macos']
python-version:
- 3.8
- 3.9
openmmtools-version:
- 0.21.5
steps:
- uses: actions/checkout@v3
- name: Setup conda env
uses: mamba-org/provision-with-micromamba@main
with:
cache-downloads: true
environment-file: false
- name: Install openmmtools
run: conda install -c jaimergp/label/unsupported-cudatoolkit-shim -c conda-forge openmmtools=${{ matrix.openmmtools-version }} python=${{ matrix.python-version }}