Skip to content

Commit

Permalink
CI: Run CI workflow on pull requests
Browse files Browse the repository at this point in the history
Let's run the CI workflow on pull requests, so that feedback is more
immediate (well, to the degree that is possible). The only concern here
could be that we now potentially run twice when creating a pull request
and then merging it. But that seems like a tiny price to pay. If we were
to force pull request creation we could remove running on push, but I am
not sure that's worth it.

Signed-off-by: Daniel Müller <deso@posteo.net>
  • Loading branch information
d-e-s-o authored and alexforster committed Jul 21, 2023
1 parent 0be8935 commit cd94529
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
name: CI
on: push
on:
pull_request:
push:

jobs:
test-gnu:
Expand Down

0 comments on commit cd94529

Please sign in to comment.