Skip to content

Commit

Permalink
add rpmlint GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
zpc0 committed May 13, 2024
1 parent 2cebd15 commit 448874e
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/rpmlint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: rpmlint
run-name: Lint RPM spec file
on: [push]
jobs:
rpmlint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install rpmlint
run: |
sudo apt-get update
sudo apt-get install rpmlint
- name: Run rpmlint
run: rpmlint monero.spec

0 comments on commit 448874e

Please sign in to comment.