We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ef9c5b commit fb4bcdcCopy full SHA for fb4bcdc
.github/workflows/rpm.yml
@@ -0,0 +1,25 @@
1
+---
2
+name: rpm-test
3
+
4
+on:
5
+ push:
6
+ branches: [master]
7
+ pull_request:
8
9
+ workflow_dispatch:
10
11
+jobs:
12
+ fedora:
13
+ name: Check that Fedora RPM patches still apply
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - uses: actions/checkout@v5
17
+ - name: Check that Fedora patches apply
18
+ run: for p in rpm/fedora/*.patch; do patch -p1 < "$p"; done
19
+ centos:
20
21
+ name: Check that CentOS RPM patches still apply
22
23
24
+ - name: Check that CentOS patches apply
25
+ run: for p in rpm/centos/*.patch; do patch -p1 < "$p"; done
0 commit comments