Add the ability to run upgrade test #59
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: Check | |
on: | |
pull_request: | |
paths-ignore: | |
- "docs/**" | |
- "cmake/**" | |
- "test/**" | |
- "upgrade_test/**" | |
- "*.md" | |
- "*.sql" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: use clang-format 13 | |
run: pip3 install clang-format==13.0.1 | |
- name: Check clang code style | |
run: git ls-files *.{c,h} | xargs clang-format -i --style=file && git diff --exit-code | |