Skip to content

feat(location): support location msg #467

feat(location): support location msg

feat(location): support location msg #467

Workflow file for this run

name: Go
on: [push, pull_request]
jobs:
build:
name: Test
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.18
uses: actions/setup-go@v1
with:
go-version: 1.18
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Install dependencies
run: make install
- name: Go Vet
run: |
go mod download
go vet ./...
- name: Go Test
run: make test
- name: Build
run: go build -o ding-dong -v ./examples/ding-dong-bot.go