Added basic "build" test for sanity #7

Merged
sagi merged 1 commit from sagi/build-action-test into main 2024-12-15 09:36:12 +00:00
2 changed files with 25 additions and 1 deletions

View file

@ -0,0 +1,24 @@
name: build bin
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
build:
name: Make sure build does not fail
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: './go.mod'
- run: go version
- run: make dep
- run: make build

View file

@ -24,7 +24,7 @@ test_coverage:
go test ./... -coverprofile=coverage.out
dep:
go mod download
go mod vendor
vet:
go vet