-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (35 loc) · 902 Bytes
/
ci.yml
File metadata and controls
39 lines (35 loc) · 902 Bytes
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
name: ci
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
test:
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write
strategy:
matrix:
python-version: ["3.12"]
defaults:
run:
shell: bash -l {0}
name: Linux py ${{ matrix.python-version }} tests
steps:
- uses: actions/checkout@v6
- name: Set up Miniconda (${{ matrix.python-version }})
uses: conda-incubator/setup-miniconda@v3
with:
auto-update-conda: true
python-version: ${{ matrix.python-version }}
activate-environment: pdmodels
channels: conda-forge,bioconda,defaults,nvidia,schrodinger
use-mamba: true
- name: Set environment
run: |
bash setup.sh
- name: Check style
run: |
pre-commit run --all-files