Skip to content

Merge pull request #1101 from struckchure/patch-1 #33

Merge pull request #1101 from struckchure/patch-1

Merge pull request #1101 from struckchure/patch-1 #33

Workflow file for this run

name: "Test Socket.io"
on:
push:
branches:
- master
- main
paths:
- "socketio/**"
pull_request:
paths:
- "socketio/**"
jobs:
Tests:
runs-on: ubuntu-latest
strategy:
matrix:
go-version:
- 1.20.x
- 1.21.x
- 1.22.x
steps:
- name: Fetch Repository
uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: "${{ matrix.go-version }}"
- name: Run Test
working-directory: ./socketio
run: go test -v -race ./...