Skip to content

Commit 1776a1b

Browse files
Refactor GitHub Actions workflow to separate installation of Xvfb and PyMOL, ensuring clarity in package management.
1 parent 866dcac commit 1776a1b

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/render-demos.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,14 @@ jobs:
2525
activate-environment: pymol
2626
channels: conda-forge,defaults
2727
use-mamba: true
28-
- name: Install PyMOL and Xvfb
28+
29+
- name: Install Xvfb
30+
run: sudo apt-get update && sudo apt-get install -y xvfb
31+
32+
- name: Install PyMOL
2933
shell: bash -l {0}
3034
run: |
31-
conda install -y pymol-open-source xvfb-run
35+
conda install -y pymol-open-source
3236
3337
- name: Render demos
3438
shell: bash -l {0}

0 commit comments

Comments
 (0)