Skip to content

Initial commit: Add Go SDK for LnBot #1

Initial commit: Add Go SDK for LnBot

Initial commit: Add Go SDK for LnBot #1

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ["1.21", "1.22", "1.23"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- run: go build ./...
- run: go vet ./...