mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-24 12:44:07 +00:00
27 lines
516 B
YAML
27 lines
516 B
YAML
|
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: "**/*"
|