diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2019-10-25 07:29:17 -0400 |
---|---|---|
committer | bstoeger <32835590+bstoeger@users.noreply.github.com> | 2019-10-25 14:13:15 +0200 |
commit | a07c2feb9526e82111374bcac98deab7fbb71345 (patch) | |
tree | c4826f589bf50224a7c07c12b6d4d054afa22431 /.github/workflows | |
parent | 7273161acf294b78a48e193d57088430aa5cf3da (diff) | |
download | subsurface-a07c2feb9526e82111374bcac98deab7fbb71345.tar.gz |
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>
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/android.yml | 2 | ||||
-rw-r--r-- | .github/workflows/ios.yml | 2 | ||||
-rw-r--r-- | .github/workflows/linux-bionic-5.9.yml | 2 | ||||
-rw-r--r-- | .github/workflows/linux-trusty-5.12.yml | 2 | ||||
-rw-r--r-- | .github/workflows/mac.yml | 2 | ||||
-rw-r--r-- | .github/workflows/windows.yml | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index 07b90ec6b..4f6d0425e 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -1,5 +1,5 @@ name: Android -on: push +on: [push, pull_request] jobs: buildInContainer: diff --git a/.github/workflows/ios.yml b/.github/workflows/ios.yml index 316b2290c..90a5c8615 100644 --- a/.github/workflows/ios.yml +++ b/.github/workflows/ios.yml @@ -1,5 +1,5 @@ name: iOS -on: push +on: [push, pull_request] jobs: mobileBuild: diff --git a/.github/workflows/linux-bionic-5.9.yml b/.github/workflows/linux-bionic-5.9.yml index 82a777dc9..e616c2cb2 100644 --- a/.github/workflows/linux-bionic-5.9.yml +++ b/.github/workflows/linux-bionic-5.9.yml @@ -1,5 +1,5 @@ name: Linux Qt 5.9 -on: push +on: [push, pull_request] jobs: buildOnBionic: diff --git a/.github/workflows/linux-trusty-5.12.yml b/.github/workflows/linux-trusty-5.12.yml index 0c20915ae..2b6b72e59 100644 --- a/.github/workflows/linux-trusty-5.12.yml +++ b/.github/workflows/linux-trusty-5.12.yml @@ -1,5 +1,5 @@ name: Linux Qt 5.12 -on: push +on: [push, pull_request] jobs: buildInContainer: diff --git a/.github/workflows/mac.yml b/.github/workflows/mac.yml index 6d3b422d0..b6caf0817 100644 --- a/.github/workflows/mac.yml +++ b/.github/workflows/mac.yml @@ -1,5 +1,5 @@ name: Mac -on: push +on: [push, pull_request] jobs: desktopBuild: diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index b94179cc6..34714fdd4 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -1,5 +1,5 @@ name: Windows -on: push +on: [push, pull_request] jobs: buildInContainer: |