2020-04-10 01:08:57 +08:00
|
|
|
name: coding-style
|
|
|
|
on: pull_request
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
check:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- run: git fetch --depth=1 origin ${{ github.event.pull_request.base.sha }}
|
2020-04-10 11:08:53 +08:00
|
|
|
- uses: yshui/git-clang-format-lint@v1.10
|
2020-04-10 01:08:57 +08:00
|
|
|
with:
|
|
|
|
base: ${{ github.event.pull_request.base.sha }}
|