Skip to content

Update okhttp monorepo to v4.12.0 #605

Update okhttp monorepo to v4.12.0

Update okhttp monorepo to v4.12.0 #605

Workflow file for this run

name: Gradle CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
IS_GITHUB_CI: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/cache@v3
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
restore-keys: |
${{ runner.os }}-gradle-
- uses: actions/checkout@v4
- name: set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
cache: gradle
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Kotlin Lint
run: ./gradlew lintKotlin
- name: Build with Gradle
run: ./gradlew build
# Required check does not show the action name.
# https://github.com/orgs/community/discussions/33579
- name: Success
run: echo All test successful