Skip to content

fix: downgrade okhttp for compatibility #7

fix: downgrade okhttp for compatibility

fix: downgrade okhttp for compatibility #7

Workflow file for this run

name: Check code style
on:
push:
paths:
- '**.java'
- '.github/workflows/code-style.yml'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
checkstyle:
name: checkstyle
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Set up JDK 17
uses: actions/setup-java@v5
with:
java-version: '17'
distribution: 'temurin'
cache: 'gradle'
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Check code style
run: ./gradlew checkstyleMain checkstyleTest --no-daemon || true