Add code style check to GitHub CI

This commit is contained in:
John McNamara 2022-02-17 18:56:06 +00:00
parent 4bec89d0e0
commit ee1093fe90

23
.github/workflows/code_style.yml vendored Normal file
View File

@ -0,0 +1,23 @@
name: Check code style
on: [push, pull_request]
jobs:
build:
name:
Check code style
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: |
sudo apt-get -y install indent
sudo ln -s /usr/bin/indent /usr/bin/gindent
- name: Make indent
run: |
make indent
git status | grep 'nothing to commit'