Skip to content

Update module github.com/onsi/ginkgo/v2 to v2.17.3 #35

Update module github.com/onsi/ginkgo/v2 to v2.17.3

Update module github.com/onsi/ginkgo/v2 to v2.17.3 #35

name: Go format, vet, test and build
on: pull_request
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.21'
check-latest: true
cache-dependency-path: go.sum
- name: Run fmt
run: go fmt ./...
- name: Run vet
run: go vet ./...
- name: Run test
run: go test -v ./...
- name: Run build
run: go build -o bin/ss-server -v ./cmd/server