From 8de5446c64a87a56392a4262c24fbb85842531ef Mon Sep 17 00:00:00 2001 From: Brian McGee Date: Thu, 9 May 2024 11:53:37 +0100 Subject: [PATCH] Revert "ci: add go workflow" This reverts commit 978eb486f45957d26a8a5132c50c0775ad402a0d. --- .github/workflows/go.yml | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 .github/workflows/go.yml diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml deleted file mode 100644 index 19ad2d7..0000000 --- a/.github/workflows/go.yml +++ /dev/null @@ -1,24 +0,0 @@ -name: Go - -on: - push: - branches: - - main - pull_request: - -jobs: - build: - strategy: - matrix: - os: ["ubuntu-latest", "macos-latest", "windows-latest"] - go: ["1.22"] - runs-on: ${{ matrix.os }} - - name: Build (Go ${{ matrix.go }}, OS ${{ matrix.os }}) - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-go@v5 - with: - go-version: ${{ matrix.go }} - - name: go test -race -bench='.+' -v ./... - run: go test -race -bench='.+' -v ./...