Skip to content

changed to correct config to get GuildID #331

changed to correct config to get GuildID

changed to correct config to get GuildID #331

Workflow file for this run

name: Run Code Checks
on: [push, pull_request]
permissions:
contents: read
jobs:
golangci:
name: Code Checks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: '1.20'
cache: false
- name: Compile
run: go build main.go
- name: Unit Tests
run: go test -v ./...
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.54
args: --timeout=10m