mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-27 15:24:05 +00:00
action:add clang format check
This commit is contained in:
parent
f654fdfa33
commit
417bf693db
27
.github/workflows/clang-format.yml
vendored
Normal file
27
.github/workflows/clang-format.yml
vendored
Normal file
|
@ -0,0 +1,27 @@
|
|||
name: Clang Format Checker
|
||||
on:
|
||||
workflow_dispatch:
|
||||
push:
|
||||
branches:
|
||||
- dev
|
||||
- staged
|
||||
paths-ignore:
|
||||
- 'docs/**'
|
||||
- ".github/**"
|
||||
- "howto/**"
|
||||
pull_request:
|
||||
branches:
|
||||
- dev
|
||||
- staged
|
||||
paths-ignore:
|
||||
- 'docs/**'
|
||||
- ".github/**"
|
||||
- "howto/**"
|
||||
jobs:
|
||||
clang-format-checking:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: RafikFarhad/clang-format-github-action@v1.0.1
|
||||
# with:
|
||||
# sources: "**/*"
|
Loading…
Reference in a new issue