Skip to content

docs(readme): used fmt.Printf instead of `fmt.Println(fmt.Sprintf(.… #32

docs(readme): used fmt.Printf instead of `fmt.Println(fmt.Sprintf(.…

docs(readme): used fmt.Printf instead of `fmt.Println(fmt.Sprintf(.… #32

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 ./...