ccls/.github/workflows/clang-format.yaml
panxueqian a4e7b93917 Add github CI integration.
CI will be responsible for compiling source code and code formatting.
2020-07-04 16:57:37 +08:00

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