Skip to content

Update module github.com/gorilla/websocket to v1.5.3 (#82) #434

Update module github.com/gorilla/websocket to v1.5.3 (#82)

Update module github.com/gorilla/websocket to v1.5.3 (#82) #434

Workflow file for this run

name: Test
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
test:
name: Run unit tests
strategy:
matrix:
go-version: [1.19.x]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v4
- name: Test (with retry)
uses: nick-fields/[email protected]
with:
timeout_minutes: 2
max_attempts: 5
command: make test