mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
45a53bf0a4
This should help merging readme PRs without having to use scary buttons
26 lines
426 B
YAML
26 lines
426 B
YAML
name: Check formatting
|
|
|
|
on:
|
|
push:
|
|
paths-ignore:
|
|
- 'docs/**'
|
|
- '*.md'
|
|
pull_request:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: ubuntu:19.10
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: apt-get update
|
|
run: apt-get update
|
|
|
|
- name: Install clang-format
|
|
run: apt-get -y install clang-format
|
|
|
|
- name: Check formatting
|
|
run: ./tools/check-format.sh
|