Skip to content

Update Swagger-UI to latest release v5.17.14 (#23) #20

Update Swagger-UI to latest release v5.17.14 (#23)

Update Swagger-UI to latest release v5.17.14 (#23) #20

Workflow file for this run

name: build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
strategy:
matrix:
go-versions: [ '1.20.x', '1.21.x', '1.22.x' ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-versions }}
- name: test
run: go test -race -coverprofile=coverage.txt -covermode=atomic
- name: coverage
run: bash <(curl -s https://codecov.io/bash)