From 00af456166f07a27f1d7292cf644dbbca6ce9dfd Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Thu, 11 Jan 2024 20:00:29 -0800 Subject: [PATCH] Initial file --- .github/workflows/formatting.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/formatting.yml 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 +