Skip to content

Commit 1238b7f

Browse files
committed
Run CI in parallel
1 parent e943a0d commit 1238b7f

File tree

2 files changed

+17
-2
lines changed

2 files changed

+17
-2
lines changed

.github/workflows/android-build.yml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Android Emulator test
2+
3+
on:
4+
pull_request:
5+
types: [opened, synchronize, reopened]
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v2
12+
- name: set up JDK 1.8
13+
uses: actions/setup-java@v1
14+
with:
15+
java-version: 1.8
16+
- name: Build with Gradle
17+
run: ./gradlew build

.github/workflows/android-emulator.yml

-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ jobs:
1313
uses: actions/setup-java@v1
1414
with:
1515
java-version: 1.8
16-
- name: Build with Gradle
17-
run: ./gradlew build
1816
- name: Android Emulator test
1917
uses: ReactiveCircus/android-emulator-runner@v2.8.0
2018
with:

0 commit comments

Comments
 (0)