-
Notifications
You must be signed in to change notification settings - Fork 32
31 lines (31 loc) · 1.02 KB
/
run-tests.yaml
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
name: Run Tests
concurrency:
group: run-tests-${{ github.ref }}
cancel-in-progress: true
on:
workflow_dispatch:
pull_request:
types: [opened, synchronize, ready_for_review, reopened]
branches:
- master
- kotlin/**
jobs:
run-kotlin-tests:
if: github.event_name != 'pull_request' || github.event.pull_request.draft == false
name: Kotlin Tests
uses: ./.github/workflows/run-kotlin-tests.yaml
run-swift-tests:
if: github.event_name != 'pull_request' || github.event.pull_request.draft == false
name: Swift Tests
uses: ./.github/workflows/run-swift-tests.yaml
run-integration-tests:
if: github.event_name != 'pull_request' || github.event.pull_request.draft == false
name: Integration Tests
needs:
- run-kotlin-tests
- run-swift-tests
uses: ./.github/workflows/run-integration-tests.yaml
run-idea-tests:
if: github.event_name != 'pull_request' || github.event.pull_request.draft == false
name: IDEA Tests
uses: ./.github/workflows/run-idea-tests.yaml