2023-06-09 20:05:14 +08:00
|
|
|
name: Clang format linter
|
|
|
|
on:
|
|
|
|
push: {}
|
|
|
|
pull_request: {}
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2023-09-05 03:21:39 +08:00
|
|
|
- uses: actions/checkout@v4
|
2023-09-01 12:10:46 +08:00
|
|
|
- uses: DoozyX/clang-format-lint-action@v0.16.2
|
2023-06-09 20:05:14 +08:00
|
|
|
with:
|
|
|
|
source: './src'
|
|
|
|
extensions: 'java'
|
2023-09-01 12:10:46 +08:00
|
|
|
clangFormatVersion: 16
|