Skip to content

chore(deps): bump github.com/gorilla/websocket from 1.5.0 to 1.5.1 #70

chore(deps): bump github.com/gorilla/websocket from 1.5.0 to 1.5.1

chore(deps): bump github.com/gorilla/websocket from 1.5.0 to 1.5.1 #70

Workflow file for this run

name: ci
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
go: ['1.20', '1.19', '1.18', '1.17', '1.16', '1.15', '1.14', '1.13']
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
- name: Test
run: go test -race -coverprofile=coverage.txt -covermode=atomic
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}