From f8685461bf8071e6ba7e8b6b4c45d04f7b249d4b Mon Sep 17 00:00:00 2001 From: gearnode Date: Wed, 8 Jan 2025 11:23:58 +0100 Subject: [PATCH] Add github action Signed-off-by: Bryan Frimin --- .github/workflows/make.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/make.yaml diff --git a/.github/workflows/make.yaml b/.github/workflows/make.yaml new file mode 100644 index 000000000..a4e1c3a56 --- /dev/null +++ b/.github/workflows/make.yaml @@ -0,0 +1,17 @@ +name: "make" +on: + push: + branches: + - "main" + pull_request: + branches: + - "main" + +jobs: + fmt-check: + name: "fmt-check" + runs-on: "ubuntu-22.04" + steps: + - uses: "actions/checkout@v4" + - uses: "actions/setup-node@v4" + - run: "make fmt-check"