Skip to content

Commit

Permalink
Add GitHub action for running Fedora tests
Browse files Browse the repository at this point in the history
  • Loading branch information
martinpitt committed Oct 22, 2019
1 parent 2b031b9 commit 1848d84
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/pr-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Run tests for PR

on:
pull_request:
branches: [master]

jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
release: ["latest", "rawhide"]

steps:
- uses: actions/checkout@v1
- name: Run Fedora tests
run: tests/run-fedora ${{ matrix.release }}

0 comments on commit 1848d84

Please sign in to comment.