Valve status output #778
Workflow file for this run
This file contains hidden or 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
| # This workflow checks for compliance with: | |
| # - *.cpp/*.h files (clang-format, .clang-format) | |
| # - *.json (Prettier, .prettierrc) | |
| name: Codechecks | |
| on: [push, pull_request] | |
| jobs: | |
| code-format: | |
| runs-on: macos-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Install dependencies | |
| run: | | |
| brew install clang-format | |
| brew install npm | |
| npm init -y | |
| npm install prettier | |
| - name: Run clang-format | |
| run: | | |
| mkdir Release | |
| cd Release | |
| cmake .. | |
| make codecheck |