pymbar Install Check #528
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
name: "pymbar 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: | |
pymbar-install-check: | |
name: Test on ${{ matrix.OS }}-latest, Python ${{ matrix.python-version }}, pymbar ${{ matrix.pymbar-version }} | |
runs-on: ${{ matrix.OS }}-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
os: ['ubuntu', 'macos'] | |
python-version: | |
- 3.8 | |
- 3.9 | |
pymbar-version: | |
- 3.1 | |
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 pymbar | |
run: conda install -c jaimergp/label/unsupported-cudatoolkit-shim -c conda-forge pymbar=${{ matrix.perses-version }} python=${{ matrix.python-version }} |