Skip to content

add: deepsource & codecov config file. #60

add: deepsource & codecov config file.

add: deepsource & codecov config file. #60

Workflow file for this run

name: Go
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.20
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...
- name: Codecov
run: go test ./... -race -coverprofile=coverage.txt -covermode=atomic -v
- name: Upload coverage to Codecov
run: bash <(curl -s https://codecov.io/bash) -t ${{ secrets.CODECOV_TOKEN }}