From 6e61be71435dc1e6a36d554ce2bd6b3a4de54b12 Mon Sep 17 00:00:00 2001 From: SoulKa Date: Sat, 25 Nov 2023 16:22:52 +0100 Subject: [PATCH] remove build pipeline --- .github/workflows/go-test.yaml | 2 +- .github/workflows/go.yaml | 28 ---------------------------- 2 files changed, 1 insertion(+), 29 deletions(-) delete mode 100644 .github/workflows/go.yaml diff --git a/.github/workflows/go-test.yaml b/.github/workflows/go-test.yaml index 6240149..49762c3 100644 --- a/.github/workflows/go-test.yaml +++ b/.github/workflows/go-test.yaml @@ -1,7 +1,7 @@ # This workflow will build a golang project # For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go -name: Go +name: Run Tests on: push: diff --git a/.github/workflows/go.yaml b/.github/workflows/go.yaml deleted file mode 100644 index 9ad8ab0..0000000 --- a/.github/workflows/go.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# This workflow will build a golang project -# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go - -name: Go - -on: - push: - branches: [ "main" ] - pull_request: - branches: [ "main" ] - -jobs: - - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - - name: Set up Go - uses: actions/setup-go@v4 - with: - go-version: '1.21' - - - name: Build - run: go build -v ./... - - - name: Test - run: go test -v ./...