This repository was archived by the owner on Feb 8, 2026. It is now read-only.
chore: mark swagger middleware as deprecated and update README #249
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
| on: | |
| push: | |
| branches: | |
| - master | |
| - main | |
| pull_request: | |
| name: Tests | |
| jobs: | |
| Tests: | |
| name: Tests | |
| strategy: | |
| matrix: | |
| go-version: | |
| - 1.25.x | |
| platform: | |
| - ubuntu-latest | |
| - windows-latest | |
| runs-on: '${{ matrix.platform }}' | |
| steps: | |
| - name: Fetch Repository | |
| uses: actions/checkout@v4 | |
| - name: Install Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: '${{ matrix.go-version }}' | |
| - name: Run Test | |
| run: go test ./... -v -race |