Skip to content

chore(deps)(deps): bump github.com/swaggo/swag from 1.16.4 to 1.16.5 #77

chore(deps)(deps): bump github.com/swaggo/swag from 1.16.4 to 1.16.5

chore(deps)(deps): bump github.com/swaggo/swag from 1.16.4 to 1.16.5 #77

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Go
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go-version:
- 1.23.x
- 1.24.x
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '${{ matrix.go-version }}'
- name: Install dependencies
run: go test -coverprofile=coverage.txt ./...
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}