Faster 441to480 #426
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-format" | |
"on": | |
push: | |
branches: | |
- "main" | |
pull_request: | |
branches: | |
- "main" | |
jobs: | |
ClangFormat: | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: "Checkout" | |
uses: "actions/checkout@v4" | |
- name: "Install clang-format and zsh" | |
run: "sudo apt-get -y install --no-install-recommends clang-format zsh" | |
- name: "Run clang-format" | |
run: ".github/scripts/check-clang-format.sh" |