Delete .github/workflows/go.yml

This commit is contained in:
Tracker-Friendly 2024-05-02 00:23:57 +01:00
parent d294d79360
commit 98c666bea2
1 changed files with 0 additions and 24 deletions

View File

@ -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)