Merge pull request #370 from marip8/update/task-composer-factory-cons… #2096
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: | |
push: | |
branches: | |
- master | |
pull_request: | |
schedule: | |
- cron: '0 5 * * *' | |
jobs: | |
clang_format: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Run clang format | |
run: | | |
sudo apt update | |
sudo apt install -y git clang-format | |
./.run-clang-format | |
output=$(git diff) | |
if [ -n "$output" ]; then exit 1; else exit 0; fi |