Skip to content

Bump github.com/gin-gonic/gin from 1.11.0 to 1.12.0 (#15) #52

Bump github.com/gin-gonic/gin from 1.11.0 to 1.12.0 (#15)

Bump github.com/gin-gonic/gin from 1.11.0 to 1.12.0 (#15) #52

Workflow file for this run

name: Go Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Setup Go
uses: actions/setup-go@v6
with:
go-version: 1.25
cache-dependency-path: "**/*.sum"
- name: Install dependencies
run: go mod download
- name: Test with Go
run: go test . -json > TestResults.json
- name: Upload Go test results
uses: actions/upload-artifact@v6
with:
name: Go-results
path: TestResults.json