feat: add Netty-based server and client examples with REST client int… #1151
Workflow file for this run
This file contains hidden or 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: "Lint Code Base" | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| build: | |
| permissions: | |
| contents: read | |
| packages: read | |
| statuses: write | |
| name: Lint Code Base | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Code | |
| uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 | |
| - name: Lint Code Base | |
| uses: github/[email protected] | |
| env: | |
| VALIDATE_ALL_CODEBASE: false | |
| DEFAULT_BRANCH: main | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| LINTER_RULES_PATH: '.' | |
| MARKDOWN_CONFIG_FILE: .markdownlint.yml | |
| VALIDATE_MARKDOWN: true | |
| VALIDATE_BASH: true | |
| VALIDATE_JAVA: true | |
| JAVA_FILE_NAME: 'checkstyle.xml' | |
| VALIDATE_GITHUB_ACTIONS: true |