Skip to content

refactor: remove unused functions and add some comments #15

refactor: remove unused functions and add some comments

refactor: remove unused functions and add some comments #15

Workflow file for this run

name: Build
on:
push:
branches:
- main
pull_request:
branches: [ "*" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [1.19.x]
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- name: Test
run: |
go mod tidy
go test ./... -race -covermode=atomic -coverprofile=coverage.out
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}