Fix snapshot generation #43
Workflow file for this run
This file contains hidden or 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: "Preintegration Checks" | |
| on: | |
| pull_request: | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| tests: | |
| runs-on: [ self-hosted-org, linux ] | |
| container: | |
| image: docker://docker.tuenti.io/android/novum_android:13 | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v4 | |
| - name: "Check Android Project" | |
| run: './gradlew clean check assemble' | |
| - name: "Check Gradle Plugin Project" | |
| run: './gradlew -p include-build clean check jar' |