Files
rgbds/.github/workflows/checkformat.yml
T
Rangi b3c3981a90 Use a separate CI step to install clang-format before running it
Also use short `-Yqu` flags like our other invocations
2026-04-15 20:12:48 -04:00

22 lines
500 B
YAML

name: Code format checking
on: pull_request
env:
# Force colored output (see https://bixense.com/clicolors/ and https://force-color.org/)
TERM: xterm-256color
CLICOLOR: 1
CLICOLOR_FORCE: 1
jobs:
checkformat:
runs-on: ubuntu-slim
steps:
- name: Checkout repo
uses: actions/checkout@v6
- name: Install clang-format
run: |
sudo apt-get install -Uyq install clang-format
- name: Check format
run: |
contrib/checkformat.sh