Files
jak-project/.github/workflows/linting.yaml
T
Tyler Wilding d1ad6c3817 utf8: fix locale mis-handling on linux (#1698)
* utf8: fix locale mis-handling on linux

* lint: formatting
2022-07-23 10:30:23 -04:00

29 lines
649 B
YAML

name: Lint
on:
push:
branches:
- '*'
pull_request:
branches:
- master
jobs:
lint:
name: 📝 Formatting
runs-on: ubuntu-20.04
timeout-minutes: 10
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Get Package Dependencies
run: |
sudo apt install clang-format clang-tidy
clang-format -version
- name: Check Clang-Formatting
run: |
chmod +x ./third-party/run-clang-format/run-clang-format.py
./third-party/run-clang-format/run-clang-format.py -r common decompiler game goalc test tools lsp --color always