diff options
-rw-r--r-- | .github/workflows/test.yml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..21e5502 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,15 @@ +name: Go +on: [push] +jobs: + build: + name: Build + runs-on: ubuntu-latest + steps: + - uses: actions/setup-go@v2 + with: + go-version: '1.17.6' + - uses: actions/checkout@v2 + - run: | + go get -v -t -d ./... + - run: go test ./... + - run: go build -ldflags="-s -w" ./cmd/bareos-zabbix-check/ |