fix(animation): animate both paws concurrently (#78) #8
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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| permissions: | |
| contents: read | |
| jobs: | |
| build-and-lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y gcc make libwayland-dev wayland-protocols \ | |
| clang-format clang-tidy | |
| - name: Check formatting | |
| run: make format-check | |
| - name: Build release | |
| run: make release | |
| - name: Build debug (ASan + UBSan) | |
| run: make clean && make debug | |
| - name: Run tests | |
| run: make test |