-
-
Notifications
You must be signed in to change notification settings - Fork 51
44 lines (37 loc) · 1.19 KB
/
integration_tests_app_fallback_ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# Copyright (c) 2022 Sharezone UG (haftungsbeschränkt)
# Licensed under the EUPL-1.2-or-later.
#
# You may obtain a copy of the Licence at:
# https://joinup.ec.europa.eu/software/page/eupl
#
# SPDX-License-Identifier: EUPL-1.2
# A workaround for GitHub Actions jobs that required and based on a path.
#
# Currently, it's not possible to set a GitHub Action to required which is
# based on path changes. The reason for this that the action is not executed
# when the action does not match the paths. Therefore, merging will be
# blocked.
#
# A workaround is to have a job which the same name.
#
# https://github.com/github/docs/commit/4364076e0fb56c2579ae90cd048939eaa2c18954
name: integration-tests-app-fallback-ci
on:
pull_request:
jobs:
android-integration-test:
runs-on: ubuntu-latest
steps:
- run: 'echo "No android-integration-test required"'
ios-integration-test:
runs-on: ubuntu-latest
steps:
- run: 'echo "No ios-integration-test required"'
web-integration-test:
runs-on: ubuntu-latest
steps:
- run: 'echo "No web-integration-test required"'
macos-build-test:
runs-on: ubuntu-latest
steps:
- run: 'echo "macos-build-test required"'