mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-23 20:15:05 +02:00
18 lines
246 B
YAML
18 lines
246 B
YAML
name: Code Formatting
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
matrix:
|
|
arch: [64]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: formatting
|
|
run: make test-format
|
|
|