Skip to content

Update Standard constants #89

Update Standard constants

Update Standard constants #89

Workflow file for this run

name: Lint Code Base
on:
push:
branches: ["develop"]
pull_request:
branches: ["develop"]
jobs:
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: Lint
uses: super-linter/super-linter/[email protected]
env:
VALIDATE_CLANG_FORMAT: true
VALIDATE_ALL_CODEBASE: false
FILTER_REGEX_INCLUDE: ut-robomaster/src/.*
# To report GitHub Actions status checks
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}