Skip to content

chore(deps): bump github.com/swaggo/swag from 1.8.10 to 1.16.2 #140

chore(deps): bump github.com/swaggo/swag from 1.8.10 to 1.16.2

chore(deps): bump github.com/swaggo/swag from 1.8.10 to 1.16.2 #140

Workflow file for this run

name: Go Test
on:
pull_request:
paths:
- .github/workflows/go-test.yml
- pkg/**
- cmd/**
- docs/**
- generated/**
- go.mod
- go.sum
- main.go
jobs:
linting:
name: Go lint
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v4
with:
go-version: '>=1.18.0'
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
args: --timeout=30m
test:
name: Go test
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v4
with:
go-version: '>=1.18.0'
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Install
run: go install
- name: Test
run: go test -v ./...