Merge branch 'master' of github.com:Chatterino/chatterino2 into danke… #579
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: | |
- dankerino | |
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@v4 | |
- 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 |