From d710fdc8d7a096c30f10e1cb54381de8f1bc2036 Mon Sep 17 00:00:00 2001 From: Vito Castellano Date: Tue, 25 Feb 2025 00:11:16 +0100 Subject: [PATCH] feat: add github build job --- .github/workflows/quality.yml | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/.github/workflows/quality.yml b/.github/workflows/quality.yml index 8ad8d83..dc0562d 100644 --- a/.github/workflows/quality.yml +++ b/.github/workflows/quality.yml @@ -21,4 +21,17 @@ jobs: uses: golangci/golangci-lint-action@v6 with: version: v1.63.4 - skip-cache: true \ No newline at end of file + skip-cache: true + + build: + name: Build + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-go@v5 + with: + go-version: stable + - name: Get dependencies + run: go mod download + - name: Build + run: go build -v ./ \ No newline at end of file