"git@developer.sourcefind.cn:gaoqiong/composable_kernel.git" did not exist on "120ab94aa18d00bf5fdf6b77b512a7f702425e80"
Commit fab5ce15 authored by Jonas Kaufmann's avatar Jonas Kaufmann Committed by Antoine Kaufmann
Browse files

add GitHub action for cpplint and clang-format

parent 34c575bc
name: lint-clang-format
on:
pull_request:
push:
branches: [main]
jobs:
lint-clang-format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: |
make lint-clang-format
name: lint-cpplint
on:
pull_request:
push:
branches: [main]
jobs:
lint-cpplint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.10'
architecture: 'x64'
- run: |
pip install cpplint
make lint-cpplint
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment