Skip to content

refactor: shrink internal packages and simplify as much as possible #76

refactor: shrink internal packages and simplify as much as possible

refactor: shrink internal packages and simplify as much as possible #76

Workflow file for this run

name: Go build & test
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup
uses: actions/setup-go@v4
with:
go-version: '1.21'
- name: Build
run: go build -v ./...
- name: Unit Test
run: go test -v -race -covermode atomic -coverprofile=covprofile ./...
- name: Install goveralls
run: go install github.com/mattn/goveralls@latest
- name: Send coverage
env:
COVERALLS_TOKEN: ${{ secrets.COVERALLS_TOKEN}}
run: goveralls -coverprofile=covprofile -service=github