Skip to content

chore(deps): bump github.com/getkin/kin-openapi from 0.124.0 to 0.125.0 #492

chore(deps): bump github.com/getkin/kin-openapi from 0.124.0 to 0.125.0

chore(deps): bump github.com/getkin/kin-openapi from 0.124.0 to 0.125.0 #492

Workflow file for this run

name: Test and build
on:
pull_request:
types: [opened]
push:
jobs:
tests:
name: Test on go ${{ matrix.go_version }} os ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
go_version: ['1.20', '1.21']
os: [ubuntu-latest]
include:
- go_version: '1.21'
os: macos-latest
steps:
- uses: actions/checkout@v1
- name: Use golang ${{ matrix.go_version }}
uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go_version }}
- name: Go version
run: |
go version
- name: Go get dependencies
run: |
go get -v -t -d ./...
- name: Run tests
run: |
go test ./... -count=1 -race -cover -coverprofile cover.out
- name: Build
run: |
go build -v .
- name: Send the coverage output
uses: shogo82148/actions-goveralls@v1
with:
path-to-profile: cover.out
flag-name: Go-${{ matrix.go_version }}
parallel: true
post-tests:
runs-on: ubuntu-latest
needs: tests
steps:
- name: Close coverage report
uses: shogo82148/actions-goveralls@v1
with:
parallel-finished: true