Skip to content

build(deps): bump the golang-modules group across 8 directories with 5 updates #205

build(deps): bump the golang-modules group across 8 directories with 5 updates

build(deps): bump the golang-modules group across 8 directories with 5 updates #205

Workflow file for this run

name: "Test swaggo"
on:
push:
branches:
- master
- main
paths:
- 'v3/swaggo/**/*.go'
- 'v3/swaggo/go.mod'
- 'v3/swaggo/go.sum'
pull_request:
paths:
- 'v3/swaggo/**/*.go'
- 'v3/swaggo/go.mod'
- 'v3/swaggo/go.sum'
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
Tests:
runs-on: ubuntu-latest
timeout-minutes: 30
env:
GOWORK: off
strategy:
matrix:
go-version:
- 1.25.x
steps:
- name: Fetch Repository
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- name: Install Go
uses: actions/setup-go@924ae3a1cded613372ab5595356fb5720e22ba16 # v6
with:
go-version: '${{ matrix.go-version }}'
cache-dependency-path: v3/swaggo/go.sum
- name: Run Test
uses: gofiber/.github/.github/actions/gotestsum@main
with:
working-directory: ./v3/swaggo
packages: ./...
rerun-fails: '2'
args: -race -count=1