bugfix: when we release a drag, we call set_rectangle so that we hook into the animation loop properly #55
Workflow file for this run
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 Tidy | |
on: | |
merge_group: | |
types: [checks_requested] | |
pull_request: | |
types: [opened, synchronize, reopened, ready_for_review] | |
jobs: | |
clang-tidy: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # needed for version determination | |
- name: Clang Format | |
run: | | |
sudo apt install clang-format | |
bash ${{github.workspace}}/tools/clang-tidy-check.sh |