Skip to content

updates to the bot

updates to the bot #64

Workflow file for this run

name: Go Test
on:
push:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: ./go.mod
cache: true
- name: Run tests
run: go test ./...