PDUNet: Call pdunet_call_rx_func() on CAN Rx. #268
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: Super Linter | |
| on: # yamllint disable-line rule:truthy | |
| push: | |
| pull_request: | |
| types: [assigned, opened, edited, synchronize, reopened] | |
| permissions: | |
| contents: read | |
| pull-requests: read | |
| packages: write | |
| jobs: | |
| build: | |
| name: Lint Code Base | |
| runs-on: [ubuntu-latest] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Super-Linter | |
| uses: super-linter/super-linter/slim@v8 | |
| env: | |
| VALIDATE_ALL_CODEBASE: true | |
| DEFAULT_BRANCH: main | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| FILTER_REGEX_EXCLUDE: (doc/content/.*|dse/ncodec/schema/.*) | |
| VALIDATE_CPP: true | |
| VALIDATE_DOCKERFILE: true | |
| # VALIDATE_GO: true | |
| VALIDATE_MARKDOWN: true | |
| VALIDATE_YAML: true |