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)