Encode modes
file in UTF8
#8040
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: Check formatting | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
merge_group: | |
concurrency: | |
group: check-formatting-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
check: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: apt-get update | |
run: sudo apt-get update | |
- name: Install clang-format | |
run: sudo apt-get -y install clang-format dos2unix | |
- name: Check formatting | |
run: ./tools/check-format.sh | |
- name: Check line-endings | |
run: ./tools/check-line-endings.sh |