Skip to content

Fix comment referencing build.gradle file #367

Fix comment referencing build.gradle file

Fix comment referencing build.gradle file #367

Workflow file for this run

name: CI
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Setup Java
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'
- name: Checkout code
uses: actions/checkout@v2
- name: Run lint
run: ./gradlew turbo:lint
- name: Run tests
run: ./gradlew testRelease
- name: Archive test results
uses: actions/upload-artifact@v2
if: failure()
with:
name: test-results-report
path: turbo/build/reports/tests/testReleaseUnitTest