Skip to content
This repository has been archived by the owner on Aug 7, 2023. It is now read-only.

style: change wantBottle to camel case #7

style: change wantBottle to camel case

style: change wantBottle to camel case #7

Workflow file for this run

name: 'Pull request: Run unit test'
on:
pull_request:
branches:
- dev
- master
- beta
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: Download dependencies
run: go mod download
- name: Vet
run: |
go vet ./...
- name: Test
run: |
go test -v -coverpkg ./internal/... -coverprofile coverage.out -covermode count ./internal/...
go tool cover -func="./coverage.out"