Skip to content

feat: pause auto-scroll when user scrolls up in stream view #18

feat: pause auto-scroll when user scrolls up in stream view

feat: pause auto-scroll when user scrolls up in stream view #18

Workflow file for this run

name: Build
on:
push:
branches: [main]
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version-file: go.mod
- name: Vet
run: go vet ./...
- name: Test
run: go test ./... -count=1
- name: Build
run: go build -ldflags "-s -w" -o /dev/null ./cmd/hzuul
if: runner.os != 'Windows'
- name: Build (Windows)
run: go build -ldflags "-s -w" -o NUL ./cmd/hzuul
if: runner.os == 'Windows'