Skip to content

Writing unit tests

Writing unit tests #6

Workflow file for this run

name: Go Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
env:
GO111MODULE: on
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.21.0
- name: Install dependencies
run: go mod download
- name: Run tests
run: go test -v ./...
- name: Check code style
run: gofmt -l -s $(find . -type f -name '*.go' -not -path "./vendor/*")
- name: Gosec Security Scanner
run: |
export PATH=$PATH:$(go env GOPATH)/bin
go install github.com/securego/gosec/cmd/gosec
gosec ./...