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