Skip to content

Bump github.com/gin-gonic/gin from 1.9.1 to 1.10.0 #42

Bump github.com/gin-gonic/gin from 1.9.1 to 1.10.0

Bump github.com/gin-gonic/gin from 1.9.1 to 1.10.0 #42

Workflow file for this run

name: Integration Test
on:
workflow_dispatch:
pull_request:
types: [opened, synchronize, reopened]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: ./go.mod
- name: Build
run: |
go version
CGO_ENABLED=0 go build -v .
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: ./go.mod
- name: run tests
run: |
go vet ./...
go test ./... -v
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: setup go
uses: actions/setup-go@v5
with:
go-version-file: ./go.mod
- name: lint
uses: golangci/golangci-lint-action@v4
with:
args: --timeout=5m