Skip to content

Show error on failure to start, and create socket subdir #37

Show error on failure to start, and create socket subdir

Show error on failure to start, and create socket subdir #37

Workflow file for this run

name: Test
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.19
- name: Verify dependencies
run: go mod verify
- name: Build
run: go build -v ./...
- name: Run go vet
run: go vet ./...
- name: Run tests
run: go test -race -vet=off ./...
- name: golangci-lint
uses: golangci/golangci-lint-action@v3