Skip to content

Added Q.UNWATCH to Websockets #1968

Added Q.UNWATCH to Websockets

Added Q.UNWATCH to Websockets #1968

Workflow file for this run

name: dice-test-suite
on:
push:
branches: [master]
paths-ignore:
- "**.md"
- "docs/**"
- ".github/**"
- "**.txt"
- "**.json"
- "**.yaml"
- "**.yml"
- "LICENSE"
pull_request:
branches: [master]
paths-ignore:
- "**.md"
- "docs/**"
- ".github/**"
- "**.txt"
- "**.json"
- "**.yaml"
- "**.yml"
- "LICENSE"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: "1.23.x"
- name: Install dependencies
run: go get .
- name: Build
run: make build
- name: Run Unit tests
run: make unittest
- name: Run Integration tests
run: make test