diff options
author | Julien Dessaux | 2023-04-04 23:53:40 +0200 |
---|---|---|
committer | Julien Dessaux | 2023-04-04 23:53:40 +0200 |
commit | 7db3cb863312a05829f03a934e10f462878d229f (patch) | |
tree | dd2fcf787a7813c883bb50e5981e3dbe0fe31a8b | |
parent | Added github action to test code on push (diff) | |
download | bareos-zabbix-check-7db3cb863312a05829f03a934e10f462878d229f.tar.gz bareos-zabbix-check-7db3cb863312a05829f03a934e10f462878d229f.tar.bz2 bareos-zabbix-check-7db3cb863312a05829f03a934e10f462878d229f.zip |
Revert "Added github action to test code on push"
This reverts commit 43fd04c5ebc36df097672d6fd1822772154f59ee.
-rw-r--r-- | .github/workflows/test.yml | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml deleted file mode 100644 index 21e5502..0000000 --- a/.github/workflows/test.yml +++ /dev/null @@ -1,15 +0,0 @@ -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/ |