Lint RPM spec file #9
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |