From 1f5d003470f3932a3b8c72fa519ce9b6b5906a03 Mon Sep 17 00:00:00 2001 From: sjc Date: Wed, 7 May 2025 23:54:40 -0400 Subject: [PATCH] Removed non-make build --- .github/workflows/build.yaml | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 .github/workflows/build.yaml diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml deleted file mode 100644 index 6453ae0..0000000 --- a/.github/workflows/build.yaml +++ /dev/null @@ -1,31 +0,0 @@ -name: Build - -on: - push: - branches: [ main ] - pull_request: - branches: [ main ] - -jobs: - - build: - name: Build - runs-on: ubuntu-latest - steps: - - - name: Set up Go 1.x - uses: actions/setup-go@v2 - with: - go-version: ^1.17 - - - name: Check out code into the Go module directory - uses: actions/checkout@v2 - - - name: Get dependencies - run: go mod download - - - name: Build - run: go build -v ./... - - - name: Test - run: go test -v ./... \ No newline at end of file