diff --git a/.github/workflows/formatting.yml b/.github/workflows/formatting.yml new file mode 100644 index 00000000..c661ff7a --- /dev/null +++ b/.github/workflows/formatting.yml @@ -0,0 +1,18 @@ +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 +