Skip to content

test checkstyle and google java format #3

test checkstyle and google java format

test checkstyle and google java format #3

Workflow file for this run

name: lint repo
on:
push:
branches-ignore: [main]
pull_request:
branches: [main]
permissions:
contents: read
packages: read
pull-requests: read
statuses: write
jobs:
lint-code-base:
name: lint code base
runs-on: ubuntu-latest
steps:
- name: checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: lint code base
uses: super-linter/super-linter@v6.4.1
env:
DEFAULT_BRANCH: main
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# only lint new and modified files
VALIDATE_ALL_CODEBASE: true
VALIDATE_JAVA: true
VALIDATE_GOOGLE_JAVA_FORMAT: true