Skip to content

Bump github.com/gorilla/websocket from 1.5.0 to 1.5.1 #916

Bump github.com/gorilla/websocket from 1.5.0 to 1.5.1

Bump github.com/gorilla/websocket from 1.5.0 to 1.5.1 #916

Workflow file for this run

name: lint
on:
push:
tags:
- v*
branches:
- master
pull_request:
permissions:
contents: read
jobs:
golangci:
strategy:
matrix:
os: [ubuntu-latest]
go-version: [1.21.x]
name: golangci-lint
runs-on: ${{ matrix.os }}
steps:
- uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- uses: actions/checkout@v2
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.52
- name: gofmt
run: |
go fmt ./...
git diff --exit-code