mirror-chatterino2/.github/workflows/check-formatting.yml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
577 B
YAML
Raw Normal View History

---
2019-11-02 11:59:34 +01:00
name: Check formatting
on:
push:
branches:
- master
pull_request:
merge_group:
2019-11-02 11:59:34 +01:00
concurrency:
group: check-formatting-${{ github.ref }}
cancel-in-progress: true
2019-11-02 11:59:34 +01:00
jobs:
check:
runs-on: ubuntu-22.04
2019-11-02 11:59:34 +01:00
steps:
- uses: actions/checkout@v4
- name: apt-get update
run: sudo apt-get update
2019-11-02 12:13:41 +01:00
- name: Install clang-format
run: sudo apt-get -y install clang-format dos2unix
2019-11-02 11:59:34 +01:00
- name: Check formatting
run: ./tools/check-format.sh
- name: Check line-endings
run: ./tools/check-line-endings.sh