This repository has been archived by the owner on Jan 13, 2025. It is now read-only.
Shoulder works #39
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
# Linter workflow | ||
name: Linter | ||
on: | ||
push: | ||
branches-ignore: [master, main] | ||
pull_request: | ||
branches: [master, main] | ||
jobs: | ||
build: | ||
name: Lint | ||
runs-on: ubuntu-latest | ||
steps: | ||
# NOTE: we are no longer using this linter - the following steps have been disabled. | ||
# We will delete this file shortly. | ||
# | ||
# - name: Checkout Code | ||
# uses: actions/checkout@v3 | ||
# with: | ||
# fetch-depth: 0 | ||
# - name: Lint Code Base | ||
# uses: super-linter/[email protected] | ||
# env: | ||
# # Only lints new/edited files | ||
# VALIDATE_ALL_CODEBASE: false | ||
# DEFAULT_BRANCH: main | ||
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
# IGNORE_GITIGNORED_FILES: true | ||
# VALIDATE_GOOGLE_JAVA_FORMAT: false | ||
# VALIDATE_JSCPD: false | ||
# VALIDATE_MARKDOWN: false | ||
# JAVA_FILE_NAME: 'checkstyle.xml' |