Skip to content

Move the http logging interceptor to the top of the file, so it's dec… #365

Move the http logging interceptor to the top of the file, so it's dec…

Move the http logging interceptor to the top of the file, so it's dec… #365

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