Skip to content

RELEASE 1.0.1

RELEASE 1.0.1 #61

Workflow file for this run

---
name: Lint
on: # yamllint disable-line rule:truthy
push: null
pull_request: null
permissions: {}
jobs:
build:
name: Lint
runs-on: ubuntu-latest
permissions:
contents: read
packages: read
# To report GitHub Actions status checks
statuses: write
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
# super-linter needs the full git history to get the
# list of files that changed across commits
fetch-depth: 0
- name: Setup Checkstyle
# super linter directory: /var/lib/docker/overlay2/{sha}/diff/action/lib/.automation
run: bash .github/scripts/checkstyle-prepare.sh
- name: Super-linter
uses: super-linter/super-linter@e1cb86b6e8d119f789513668b4b30bf17fe1efe4
env:
# To report GitHub Actions status checks
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
JAVA_FILE_NAME: checkstyle_config.xml
VALIDATE_BASH_EXEC: false
VALIDATE_CHECKOV: false
# Disable google-java-format linter as it produces no useful error messages
VALIDATE_GOOGLE_JAVA_FORMAT: false
VALIDATE_JSCPD: false