fix build on F41+ #13
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: Lint RPM spec file | |
on: [push] | |
permissions: {} | |
jobs: | |
rpmlint: | |
runs-on: ubuntu-latest | |
container: fedora:latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Install rpmlint | |
run: sudo dnf install -y rpmlint | |
- name: Run rpmlint | |
run: rpmlint monero.spec |