From 47cb3f3105eb2cff4a8480f3086166bf3304c9a2 Mon Sep 17 00:00:00 2001 From: M0Rf30 Date: Sat, 4 Nov 2023 15:29:37 +0100 Subject: [PATCH] feat: add CI to verify rules --- .github/workflows/verify.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/verify.yml diff --git a/.github/workflows/verify.yml b/.github/workflows/verify.yml new file mode 100644 index 0000000..1c0367b --- /dev/null +++ b/.github/workflows/verify.yml @@ -0,0 +1,22 @@ +name: Verify rules + +on: + push: + branches: + - "*" + pull_request: + branches: + - "*" + +jobs: + build: + runs-on: ubuntu-latest + container: docker.io/archlinux:latest + steps: + - uses: actions/checkout@v4 + + - name: Install udev + run: pacman -Sy systemd --noconfirm + + - name: Test 51-android.rules + run: udevadm verify 51-android.rules