[codex] Fix continue watching series open #42
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: TV QA | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| - "feat/**" | |
| jobs: | |
| qa: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 30 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up JDK 17 | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: temurin | |
| java-version: "17" | |
| cache: gradle | |
| - name: Compile + Unit Tests + Lint | |
| run: | | |
| set -euo pipefail | |
| ./gradlew :app:compileDebugKotlin :app:testDebugUnitTest :app:lintDebug --stacktrace | |
| - name: Upload Lint Report | |
| if: always() | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: lint-report | |
| path: app/build/reports/lint-results-debug.html | |
| if-no-files-found: ignore | |
| - name: Upload Unit Test Report | |
| if: always() | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: unit-test-report | |
| path: app/build/reports/tests/testDebugUnitTest | |
| if-no-files-found: ignore |