Add github action

Signed-off-by: Bryan Frimin <bryan@frimin.fr>
This commit is contained in:
gearnode
2025-01-08 11:23:58 +01:00
parent 17d4f30051
commit f8685461bf

17
.github/workflows/make.yaml vendored Normal file
View File

@@ -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"