Skip to content

Thought I'd try running our tests in parallel to speed up CI a little. #146

Thought I'd try running our tests in parallel to speed up CI a little.

Thought I'd try running our tests in parallel to speed up CI a little. #146

Workflow file for this run

# A workflow for controlling the actions taken by CI whenever we merge code into master
name: Android SDK Master CI
# Triggers the workflow on when code is merged into master
on:
push:
branches:
- 'master'
jobs:
# A job for running our tests
test:
name: Run Unit Tests
# The type of runner that the job will run on
runs-on: ubuntu-22.04
strategy:
matrix:

Check failure on line 20 in .github/workflows/android-master.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/android-master.yml

Invalid workflow file

You have an error in your yaml syntax on line 20
module: [ :sdk:core, :sdk:analytics, :sdk:forms, :sdk:push-fcm ]
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so the job can access it
- uses: actions/checkout@v4
# Sets up a JDK on the job so that we can run Java code
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: '17'
java-package: jdk
# Call Gradle to run the unit tests
- name: Unit Tests
run: ./gradlew {{ matrix.module }}:test --stacktrace --no-daemon
# Another job for asserting our linting rules
ktlint:
name: Run ktlintCheck
# The type of runner that the job will run on
runs-on: ubuntu-22.04
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so the job can access it
- uses: actions/checkout@v4
# Sets up a JDK on the job so that we can run Java code
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: '17'
java-package: jdk
# Call Gradle to run ktlint check
- name: KtlintCheck
run: bash ./gradlew ktlintCheck
# Another job for building our SDK's AAR file
aar:
name: Generate AAR
# The type of runner that the job will run on
runs-on: ubuntu-22.04
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so the job can access it
- uses: actions/checkout@v4
# Sets up a JDK on the job so that we can run Java code
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: '17'
java-package: jdk
# Call Gradle to build our debug AAR
- name: Build debug AAR
run: ./gradlew assembleDebug --stacktrace --no-daemon
# Stores the generated AAR to an outputs folder
- name: Store AAR
uses: actions/upload-artifact@v4
with:
name: sdk
path: app/build/outputs/aar/debug/aar-debug.aar
overwrite: true