-
Notifications
You must be signed in to change notification settings - Fork 199
49 lines (40 loc) · 1.21 KB
/
integ_test.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
45
46
47
48
49
name: Integration Tests (Except DataStore & API)
on:
workflow_dispatch:
push:
branches: [main]
permissions:
id-token: write
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: ${{ github.ref_name != 'main'}}
jobs:
analytics-test:
name: Analytics Integration Tests
uses: ./.github/workflows/integ_test_analytics.yml
secrets: inherit
push-notifications-test:
name: Push Notifications Integration Tests
uses: ./.github/workflows/integ_test_push_notifications.yml
secrets: inherit
predictions-test:
name: Predictions Integration Tests
uses: ./.github/workflows/integ_test_predictions.yml
secrets: inherit
auth-test:
name: Auth Integration Tests
uses: ./.github/workflows/integ_test_auth.yml
secrets: inherit
geo-test:
name: Geo Integration Tests
uses: ./.github/workflows/integ_test_geo.yml
secrets: inherit
storage-test:
name: Storage Integration Tests
uses: ./.github/workflows/integ_test_storage.yml
secrets: inherit
logging-test:
name: Logging Integration Tests
uses: ./.github/workflows/integ_test_logging.yml
secrets: inherit