Skip to content

Support BT with break line #3

Support BT with break line

Support BT with break line #3

Workflow file for this run

name: Go CI
on:
push:
branches: [ "*" ]
pull_request:
branches: [ "*" ]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.24'
cache: true
- name: Install dependencies
run: go mod download
- name: Run tests
run: go test -v ./...
- name: Build
run: go build -v ./...