Skip to content

Bump github.com/swaggo/swag from 1.16.3 to 1.16.4 #255

Bump github.com/swaggo/swag from 1.16.3 to 1.16.4

Bump github.com/swaggo/swag from 1.16.3 to 1.16.4 #255

Workflow file for this run

name: Go Test and Build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test-and-build:
name: Test and Build
strategy:
matrix:
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.22
- name: Run Tests
run: make test
- name: Build
run: make build