From 448874e8c9990885036de60f0be8d1bbdb7b7f78 Mon Sep 17 00:00:00 2001 From: Yanase Yuki Date: Mon, 13 May 2024 16:51:39 +0900 Subject: [PATCH] add rpmlint GitHub Actions --- .github/workflows/rpmlint.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/rpmlint.yml diff --git a/.github/workflows/rpmlint.yml b/.github/workflows/rpmlint.yml new file mode 100644 index 0000000..cc5863d --- /dev/null +++ b/.github/workflows/rpmlint.yml @@ -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