mirror-chatterino2/.github/workflows/check-formatting.yml
dependabot[bot] 92040896fa
Bump actions/checkout from v1 to v2.3.3 (#2052)
Bumps [actions/checkout](https://github.com/actions/checkout) from v1 to v2.3.3.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v1...a81bbbf8298c0fa03ea29cdc473d45769f953675)

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2020-10-10 10:40:31 +02:00

26 lines
430 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@v2.3.3
- 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