Skip to content

MAINT: cherry-picking conflict #2

MAINT: cherry-picking conflict

MAINT: cherry-picking conflict #2

Workflow file for this run

name: Checkstyle
on: [push, pull_request]
jobs:
checkstyle:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 11 ]
steps:
- name: Checkout Java Client
uses: actions/checkout@v3
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v3
with:
java-version: ${{ matrix.java }}
distribution: 'temurin'
cache: 'gradle'
- name: Check style and license headers
run: |
./gradlew checkstyleMain checkstyleTest