Skip to content

feat: Update readme and fix bst #10

feat: Update readme and fix bst

feat: Update readme and fix bst #10

Workflow file for this run

name: Go CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: '1.20'
- name: Run tests
run: go test -count=3 -v ./...
- name: Build
run: go build -v ./...