mirror of
https://github.com/subsurface/subsurface.git
synced 2025-01-31 21:43:23 +00:00
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:
parent
7273161acf
commit
a07c2feb95
6 changed files with 6 additions and 6 deletions
2
.github/workflows/android.yml
vendored
2
.github/workflows/android.yml
vendored
|
@ -1,5 +1,5 @@
|
||||||
name: Android
|
name: Android
|
||||||
on: push
|
on: [push, pull_request]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
buildInContainer:
|
buildInContainer:
|
||||||
|
|
2
.github/workflows/ios.yml
vendored
2
.github/workflows/ios.yml
vendored
|
@ -1,5 +1,5 @@
|
||||||
name: iOS
|
name: iOS
|
||||||
on: push
|
on: [push, pull_request]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
mobileBuild:
|
mobileBuild:
|
||||||
|
|
2
.github/workflows/linux-bionic-5.9.yml
vendored
2
.github/workflows/linux-bionic-5.9.yml
vendored
|
@ -1,5 +1,5 @@
|
||||||
name: Linux Qt 5.9
|
name: Linux Qt 5.9
|
||||||
on: push
|
on: [push, pull_request]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
buildOnBionic:
|
buildOnBionic:
|
||||||
|
|
2
.github/workflows/linux-trusty-5.12.yml
vendored
2
.github/workflows/linux-trusty-5.12.yml
vendored
|
@ -1,5 +1,5 @@
|
||||||
name: Linux Qt 5.12
|
name: Linux Qt 5.12
|
||||||
on: push
|
on: [push, pull_request]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
buildInContainer:
|
buildInContainer:
|
||||||
|
|
2
.github/workflows/mac.yml
vendored
2
.github/workflows/mac.yml
vendored
|
@ -1,5 +1,5 @@
|
||||||
name: Mac
|
name: Mac
|
||||||
on: push
|
on: [push, pull_request]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
desktopBuild:
|
desktopBuild:
|
||||||
|
|
2
.github/workflows/windows.yml
vendored
2
.github/workflows/windows.yml
vendored
|
@ -1,5 +1,5 @@
|
||||||
name: Windows
|
name: Windows
|
||||||
on: push
|
on: [push, pull_request]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
buildInContainer:
|
buildInContainer:
|
||||||
|
|
Loading…
Add table
Reference in a new issue