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

32 lines
563 B
YAML
Raw Normal View History

---
2019-11-02 11:59:34 +01:00
name: Check formatting
on:
push:
branches:
- master
pull_request:
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@v3
- 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