This repository has been archived by the owner on Jul 11, 2024. It is now read-only.
chore: Update module nhooyr.io/websocket to v1.8.10 - autoclosed #330
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build tags | |
on: [pull_request] | |
jobs: | |
buildtags: | |
name: tag | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
buildtag: [disgord_diagnosews] | |
steps: | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.19 | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Get dependencies | |
run: go mod download | |
- name: test | |
run: go test -tags=${{ matrix.buildtag }} -v -race -short ./... |