Skip to content

chore(deps): bump github.com/oapi-codegen/runtime from 1.4.0 to 1.4.1 in the all group across 1 directory #232

chore(deps): bump github.com/oapi-codegen/runtime from 1.4.0 to 1.4.1 in the all group across 1 directory

chore(deps): bump github.com/oapi-codegen/runtime from 1.4.0 to 1.4.1 in the all group across 1 directory #232

Workflow file for this run

---
# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Go
on:
pull_request:
push:
branches: ["main"]
permissions:
contents: read
actions: read
checks: write
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version-file: "./go.mod"
- name: Build
run: go build ./...
- name: Test
run: go test -json ./... > test-results.json
- name: Test Report
uses: dorny/test-reporter@v2
if: ${{ !cancelled() }}
with:
name: Go Test
path: test-results.json
reporter: golang-json
golangci-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version-file: "./go.mod"
- name: golangci-lint
uses: golangci/golangci-lint-action@v9
with:
version: v2.1