forked from openmm/pdbfixer
-
Notifications
You must be signed in to change notification settings - Fork 4
35 lines (30 loc) · 786 Bytes
/
CI.yml
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
name: PDBFixer Continuous Integration Workflow
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build_test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v2
name: "Checkout the source code"
- uses: conda-incubator/setup-miniconda@v2
name: "Prepare base dependencies"
with:
python-version: ${{ matrix.python-version }}
activate-environment: pdbfixer-dev
environment-file: devtools/environment-dev.yaml
- name: "Install PDBFixer"
shell: bash -l {0}
run: |
which python
python -V
pip install -e .
pytest -vs pdbfixer