Skip to content

Commit

Permalink
Trying to use XVFB in Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
jmwright committed Sep 19, 2024
1 parent 0b77dfc commit 0f3c28b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on: [push]
jobs:
test:
name: Test
runs-on: ubuntu-24.04
runs-on: ubuntu-latest
steps:
- name: "Check out the repo"
uses: actions/checkout@v3
Expand All @@ -26,12 +26,13 @@ jobs:

- name: Install system dependencies
run: |
sudo apt update && sudo apt install -y libgl1 libglx-mesa0 libosmesa6
sudo apt update && sudo apt install -y libgl1 libglx-mesa0
- name: Install nimble packages and dev tools
run: |
pip install -e .[dev]
- name: Run tests
uses: coactions/setup-xvfb@v1
run: |
pytest

0 comments on commit 0f3c28b

Please sign in to comment.