cyclone/.github/workflows/formatting.yml
2025-01-20 18:51:31 -08:00

23 lines
374 B
YAML

name: Code Formatting
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
arch: [64]
steps:
- uses: actions/checkout@v1
- name: Install deps
run: sudo apt-get install -y indent
- name: formatting
run: |
make format
git diff
! git status -s | grep "^ M "