Update dependency com.puppycrawl.tools:checkstyle to v10.18.1 #841
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: containers | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
types: [opened, labeled, unlabeled, synchronize] | |
permissions: | |
contents: read | |
env: | |
GRADLE_OPTS: "-Dorg.gradle.jvmargs=-Xmx4g -Dorg.gradle.daemon=false -Dkotlin.incremental=false" | |
jobs: | |
test_containers: | |
permissions: | |
checks: write # for actions/upload-artifact | |
runs-on: ubuntu-latest | |
if: github.ref == 'refs/heads/master' || contains(github.event.pull_request.labels.*.name, 'containers') | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Configure JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'zulu' | |
java-version: 17 | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@v4 | |
- name: Run Container Tests | |
run: ./gradlew container-tests:test -PcontainerTests=true |