Skip to content

[Feature] Jwt Service #11

[Feature] Jwt Service

[Feature] Jwt Service #11

Workflow file for this run

name: "Pull request: Run unit test"
on:
pull_request:
branches:
- main
- beta
- dev
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.21
check-latest: true
cache: true
- name: Download dependencies
run: go mod download
- name: Vet
run: |
go vet ./...
- name: Test
run: |
go test -v -coverpkg ./src/internal/... -coverprofile coverage.out -covermode count ./src/internal/...
go tool cover -func="./coverage.out"