mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-18 21:29:18 +02:00
21 lines
324 B
YAML
21 lines
324 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 test-format
|
|
|