Skip to content

Bump github.com/gin-gonic/gin from 1.7.7 to 1.9.1 in /wrapper/gin #51

Bump github.com/gin-gonic/gin from 1.7.7 to 1.9.1 in /wrapper/gin

Bump github.com/gin-gonic/gin from 1.7.7 to 1.9.1 in /wrapper/gin #51

Workflow file for this run

name: Go
on: [push]
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
go: ["1.17"]
steps:
- name: Set up Go ${{ matrix.go }}
uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go }}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v1
- name: Get dependencies
run: go get -v -t -d ./...
- name: Test
run: go test ./...