bump software versions + switch to micromamba #527
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: "Yank 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: | |
yank-install-check: | |
name: Test on ${{ matrix.OS }}-latest, Python ${{ matrix.python-version }}, Yank ${{ matrix.yank-version }} | |
runs-on: ${{ matrix.OS }}-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
os: ['ubuntu', 'macos'] | |
python-version: | |
- 3.8 | |
- 3.9 | |
yank-version: | |
- 0.25.2 | |
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 Yank | |
run: conda install -c jaimergp/label/unsupported-cudatoolkit-shim -c conda-forge yank=${{ matrix.yank }} python=${{ matrix.python-version }} |