8000 add more tests to mux · disgoorg/disgo@d34d131 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

add more tests to mux #2832

add more tests to mux

add more tests to mux #2832

Workflow file for this run

name: Go
on:
push:
paths:
- '**/*.go'
- '**/go.mod'
- '**/go.sum'
- '.github/workflows/go.yml'
pull_request_target:
paths:
- '**/*.go'
- '**/go.mod'
- '**/go.sum'
- '.github/workflows/go.yml'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v5
with:
go-version: 1.21
- uses: actions/checkout@v4
- name: go build
run: go build -v ./...
test:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v5
with:
go-version: 1.21
- uses: actions/checkout@v4
- name: go test
run: go test -v ./...
golangci:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v5
with:
go-version: 1.21
- uses: actions/checkout@v4
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: latest
0