Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Run CI in parallel
Harmonize parallel jobs
  • Loading branch information
hannesa2 committed May 10, 2020
commit 4f0382cf825915d5eff38ff0b5b6908f715d6eb6
14 changes: 11 additions & 3 deletions .github/workflows/android-emulator.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
name: Android Emulator test
name: Android CI

on:
pull_request:
types: [opened, synchronize, reopened]

jobs:
build:
runs-on: macOS-latest
Build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: set up JDK 1.8
Expand All @@ -15,6 +15,14 @@ jobs:
java-version: 1.8
- name: Build with Gradle
run: ./gradlew build
Espresso:
runs-on: macOS-latest
steps:
- uses: actions/checkout@v2
- name: set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Android Emulator test
uses: ReactiveCircus/[email protected]
with:
Expand Down