Workflow (Java, Python, Rust): SESv2 Weekly Mailer #11311
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
# This workflow uses https://github.com/github/super-linter | |
name: Lint Code Base | |
on: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
run-lint: | |
name: Lint Multiple | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout files | |
uses: actions/checkout@v4 | |
with: | |
sparse-checkout: | | |
.github | |
php | |
python | |
ruby | |
kotlin | |
- name: Lint Code Base | |
uses: github/super-linter@v4 | |
env: | |
VALIDATE_ALL_CODEBASE: false | |
DEFAULT_BRANCH: main | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
VALIDATE_PHP_PHPCS: true | |
VALIDATE_PYTHON: true | |
VALIDATE_PYTHON_BLACK: true | |
VALIDATE_RUBY: true | |
VALIDATE_KOTLIN: true |