Skip to content

REST HTTP API

REST HTTP API #251

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Go
on:
push:
branches:
- "main"
- "dev"
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.22'
- name: Verify dependencies
run: go mod verify
- name: Build
run: ./scripts/build.sh
- name: Run go vet
run: go vet ./...
- name: Install staticcheck
run: go install honnef.co/go/tools/cmd/staticcheck@latest
- name: Run staticcheck
run: staticcheck ./...
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: v1.60
- name: Test
run: go test -race -vet=off -v ./...