Skip to content

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

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

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

Workflow file for this run

on:
push:
branches: [main]
pull_request:
name: Lint and Test
defaults:
run:
shell: bash
jobs:
conventional-commits:
runs-on: ubuntu-latest
steps:
- name: Conventional Commits
uses: webiny/[email protected]
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
allowed-commit-types: "feat,fix,cicd,chore,patch,release,test,docs"
lint:
name: Lint files
runs-on: 'ubuntu-latest'
needs: conventional-commits
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.22.4'
check-latest: true
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: latest
test:
name: Run tests
runs-on: 'ubuntu-latest'
needs: lint
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.22.4'
check-latest: true
- run: go test -v -cover