mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
523e0c5ef4
Co-authored-by: Felanbird <41973452+Felanbird@users.noreply.github.com>
32 lines
563 B
YAML
32 lines
563 B
YAML
---
|
|
name: Check formatting
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
|
|
concurrency:
|
|
group: check-formatting-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
check:
|
|
runs-on: ubuntu-20.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
|