z_player Player_Action_DamageAnimation
#178
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
| name: Check format | |
| # Build on every branch push, tag push, and pull request change: | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| build: | |
| name: Check format | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout reposistory | |
| uses: actions/checkout@v6 | |
| - name: Install package requirements | |
| run: | | |
| sudo apt-get install -y python3 clang-format-14 clang-tidy-14 | |
| - name: Check formatting | |
| run: python3 tools/check_format.py |