ANDROID-13796 Roborazzi screenshot tests #909
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: "Run tests" | |
on: | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
tests: | |
runs-on: self-hosted-novum | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v2 | |
- name: "Build Android project" | |
uses: docker://docker.tuenti.io/android/novum_android_api31:2 | |
with: | |
args: 'bash ./gradlew clean check assemble' | |
- name: Upload Lint results | |
uses: github/codeql-action/upload-sarif@v2 | |
if: success() || failure() | |
with: | |
sarif_file: app/build/reports/lint-results-debug.sarif | |
category: lint |