Skip to content

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

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 #94

Workflow file for this run

name: Go
# Controls when the workflow will run
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
name: Building on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04, macOS-latest]
goV: [1.20.9, 1.19]
steps:
- name: Set up Go ${{ matrix.goV }}
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.goV }}
- name: Check out repo
uses: actions/checkout@v4
- name: Build
run: |
go build -ldflags="-s -w" -v .