Skip to content

Commit

Permalink
Replace XVFB action with direct use of xvfb-run.
Browse files Browse the repository at this point in the history
  • Loading branch information
martinling committed Jul 13, 2024
1 parent f010149 commit 1eab617
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,9 +100,12 @@ jobs:
run: cargo build --release

- name: Test
uses: GabrielBB/xvfb-action@v1
with:
run: cargo test
run: cargo test
if: runner.os != 'Linux'

- name: Test under XVFB (Linux)
run: xvfb-run cargo test
if: runner.os == 'Linux'

- name: Compile glib schemas (Windows)
run: |
Expand Down

0 comments on commit 1eab617

Please sign in to comment.