This repository has been archived by the owner on May 3, 2024. It is now read-only.
Bug fix/fix delimiters name #940
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: clang-format | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: [ master ] | |
paths: | |
- "core/**" | |
- "tests/**" | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
timeout-minutes: 60 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: calculate diff | |
run: | | |
mkdir -p build | |
git diff --diff-filter=ACMRT --name-only ${{ github.event.pull_request.base.sha }} ${{ github.event.pull_request.head.sha }} -- core/ tests/ > build/DIFF | |
- name: clang-format | |
uses: iresearch-toolkit/clang-format-action@1.0.5 |