widgets/cliprect: fix typo in bottomRightRadius #28
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: Lint | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
# Use cachix action over detsys for testing with act. | |
# - uses: cachix/install-nix-action@v27 | |
- uses: DeterminateSystems/nix-installer-action@main | |
- uses: nicknovitski/nix-develop@v1 | |
- name: Check formatting | |
run: clang-format -Werror --dry-run src/**/*.{cpp,hpp} | |
# required for lint | |
- name: Build | |
run: | | |
just configure debug -DNO_PCH=ON -DBUILD_TESTING=ON | |
just build | |
- name: Run lints | |
run: just lint-ci |