-
Notifications
You must be signed in to change notification settings - Fork 19
39 lines (35 loc) · 1.22 KB
/
clang-format-check.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# This workflow executes several linters on changed files based on languages used in your code base whenever
# you push a code or open a pull request.
#
# You can adjust the behavior by modifying this file.
# For more information, see:
# https://github.com/github/super-linter
# https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions
name: "Super-Linter"
on:
push:
branches: [ "develop" ]
pull_request:
branches: [ "*" ]
permissions: "read-all"
jobs:
clang-format-check:
runs-on: ${{ github.repository_owner == 'intel' && 'ubuntu-latest' || 'service' }}
# Grant status permission for MULTI_STATUS
permissions:
contents: "read"
packages: "read"
statuses: "write"
steps:
- name: "Checkout Code"
uses: "actions/checkout@v4"
with:
# Full git history is needed to get a proper list of changed files within `super-linter`
fetch-depth: 0
- name: "Validation with Super-Linter"
uses: "super-linter/[email protected]"
env:
VALIDATE_ALL_CODEBASE: true
VALIDATE_CLANG_FORMAT: true
FILTER_REGEX_EXCLUDE: ".*tools/third_party.*"
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"