Skip to content

Commit

Permalink
Add test
Browse files Browse the repository at this point in the history
  • Loading branch information
pguyot committed May 13, 2024
1 parent 8a1aaef commit 8543b9c
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/test-unmount-force.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Test unmount succeeds even if processes are still running
on:
push:
branches:
- 'main'
- 'releases/**'
pull_request:
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./ # pguyot/arm-runner-action@HEAD
image_additional_mb: 1024
with:
commands: |
sudo apt update -y
sudo apt install xvfb fluxbox -y
export DISPLAY=:0.0
Xvfb :0 -screen 0 1280x720x24 > /dev/null 2>&1 &
sleep 1
fluxbox > /dev/null 2>&1 &

0 comments on commit 8543b9c

Please sign in to comment.