This repository has been archived by the owner on Feb 27, 2024. It is now read-only.
Refactor iOS upload - part 2 #451
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: KMM Tests | |
on: | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: set up JDK 11 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 11 | |
- name: Check BridgeClient | |
env: | |
testExternalId01: ${{ secrets.TEST_EXTERNAL_ID_01 }} | |
run: ./gradlew check | |
- name: Publish Unit Test Results | |
uses: EnricoMi/publish-unit-test-result-action/composite@v1 | |
if: always() | |
with: | |
files: bridge-client/build/test-results/**/*.xml | |
- name: Upload Reports | |
uses: actions/upload-artifact@v2 | |
with: | |
name: Test-Reports | |
path: assessmentmodel-sdk/build/reports | |
if: always() |