chore: sync with 93e86851e9f22f1f2db57812cf71fc004c02159c #1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test | |
on: | |
push: | |
jobs: | |
test: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- ubuntu-latest | |
- macos-latest | |
- windows-latest | |
go: | |
- stable | |
- oldstable | |
runs-on: ${{ matrix.os }} | |
name: swaggo/swag tests (using go ${{ matrix.go }} on ${{ matrix.os }}) | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ matrix.go }} | |
- run: go test -v ./... |