Add minor README.md rephrasing #197
Workflow file for this run
This file contains hidden or 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: rpm-test | |
| on: | |
| push: | |
| branches: [master] | |
| pull_request: | |
| branches: [master] | |
| workflow_dispatch: | |
| jobs: | |
| fedora: | |
| name: Check that Fedora RPM patches still apply | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Check that Fedora patches apply | |
| run: for p in rpm/fedora/*.patch; do patch -p1 -s --fuzz=0 --no-backup-if-mismatch -f < "$p"; done | |
| centos: | |
| runs-on: ubuntu-latest | |
| name: Check that CentOS RPM patches still apply | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Check that CentOS patches apply | |
| run: for p in rpm/centos/*.patch; do patch -p1 -s --fuzz=0 --no-backup-if-mismatch -f < "$p"; done |