8000 add ClearPoll instead of accepting a pointer · disgoorg/disgo@fce3f55 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

add ClearPoll instead of accepting a pointer #607

add ClearPoll instead of accepting a pointer

add ClearPoll instead of accepting a pointer #607

Workflow file for this run

name: Go
on:
push:
pull_request_target:
jobs:
gobuild:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v3
with:
go-version: 1.21
- uses: actions/checkout@v3
- name: go build
run: go build -v ./...
gotest:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v3
with:
go-version: 1.21
- uses: actions/checkout@v3
- name: go build
run: go test -v ./...
golangci:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v3
with:
go-version: 1.21
- uses: actions/checkout@v3
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: latest
0