-
Notifications
You must be signed in to change notification settings - Fork 4
37 lines (31 loc) · 1 KB
/
testing.yml
File metadata and controls
37 lines (31 loc) · 1 KB
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
name: Testing PyMOL in Windows
on:
push:
branches: [main]
release:
types: [created]
workflow_dispatch:
jobs:
install-and-test:
runs-on: windows-latest
steps:
- uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.13
- name: Install dependencies
run: |
python -m pip install numpy
python -m pip install pmw
python -m pip install pyqt5
- name: Install pymol
run: |
cd whl
python -m pip install --no-index --find-links="%CD%" pymol_launcher-3.2.0cp313-cp313-win_amd64.whl
pip install --upgrade --no-deps pymol-3.2.0a0-cp313-cp313-win_amd64.whl
where.exe pymol
- name: Launch PyMOL
run: |
pymol -c
pymol --version