Skip to content

Commit

Permalink
feat: add CI to verify rules (#291)
Browse files Browse the repository at this point in the history
  • Loading branch information
M0Rf30 committed Nov 4, 2023
1 parent 965d00d commit d9dbf06
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Basic set up for three package managers

version: 2
updates:
# Maintain dependencies for GitHub Actions
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
21 changes: 21 additions & 0 deletions .github/workflows/verify.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
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: Test 51-android.rules
run: |
groupadd adbusers
udevadm verify 51-android.rules

0 comments on commit d9dbf06

Please sign in to comment.