-
Notifications
You must be signed in to change notification settings - Fork 0
46 lines (39 loc) · 1.03 KB
/
yank-install-test.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
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 }}