From 98c666bea2f75cd9e4977565b71d0ba284860785 Mon Sep 17 00:00:00 2001 From: Tracker-Friendly Date: Thu, 2 May 2024 00:23:57 +0100 Subject: [PATCH] Delete .github/workflows/go.yml --- .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 2bb2996..0000000 --- a/.github/workflows/go.yml +++ /dev/null @@ -1,24 +0,0 @@ -name: CI -on: [push, pull_request] -jobs: - build: - name: Build - runs-on: ubuntu-latest - steps: - - name: Set up Golang - uses: actions/setup-go@v2 - with: - go-version: '^1.18.0' - - run: go version - - - name: Check out code into the Go module directory - uses: actions/checkout@v2 - - - name: install dependencies - run: go mod download - - - name: run test - run: go test -race -coverprofile=coverage.txt -covermode=atomic - - - name: upload coverage - run: bash <(curl -s https://codecov.io/bash)