GitHub Actions: run them on pull requests as well

I wonder if this will cause issues where the actions sometimes run
twice.  But we'll deal with that rather than dealing with not having the
tests on pull requests.

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2019-10-25 07:29:17 -04:00 committed by bstoeger
parent 7273161acf
commit a07c2feb95
6 changed files with 6 additions and 6 deletions

View file

@ -1,5 +1,5 @@
name: Android
on: push
on: [push, pull_request]
jobs:
buildInContainer:

View file

@ -1,5 +1,5 @@
name: iOS
on: push
on: [push, pull_request]
jobs:
mobileBuild:

View file

@ -1,5 +1,5 @@
name: Linux Qt 5.9
on: push
on: [push, pull_request]
jobs:
buildOnBionic:

View file

@ -1,5 +1,5 @@
name: Linux Qt 5.12
on: push
on: [push, pull_request]
jobs:
buildInContainer:

View file

@ -1,5 +1,5 @@
name: Mac
on: push
on: [push, pull_request]
jobs:
desktopBuild:

View file

@ -1,5 +1,5 @@
name: Windows
on: push
on: [push, pull_request]
jobs:
buildInContainer: