Skip to content

Commit

Permalink
feat: add CI to verify rules
Browse files Browse the repository at this point in the history
  • Loading branch information
M0Rf30 committed Nov 4, 2023
1 parent 965d00d commit eb9e1e4
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/verify.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
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
shell: sh -e --root {0}

- name: Test 51-android.rules
run: udevadm verify 51-android.rules

0 comments on commit eb9e1e4

Please sign in to comment.