mirror of
https://github.com/MaskRay/ccls.git
synced 2025-04-05 00:12:13 +00:00
14 lines
270 B
YAML
14 lines
270 B
YAML
name: check code format
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: macos-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: install depend
|
|
run: brew install clang-format
|
|
- name: format check
|
|
run: ./.github/workflows/clang-format-check.py -r src
|