From 94b3767dcf48d628e66d0701e40ee8a7b6d8628e Mon Sep 17 00:00:00 2001 From: jamesread Date: Mon, 4 Oct 2021 23:59:57 +0100 Subject: [PATCH] codestyle checks --- .github/workflows/codestyle.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/codestyle.yml diff --git a/.github/workflows/codestyle.yml b/.github/workflows/codestyle.yml new file mode 100644 index 00000000..162488d2 --- /dev/null +++ b/.github/workflows/codestyle.yml @@ -0,0 +1,18 @@ +name: "Codestyle checks" + +on: [push] + +jobs: + codestyle: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v2 + + - name: actions/setup-go@v2 + + - name: daemon + run: make daemon-codestyle + + - name: webui + run: make webui-codestyle