Skip to content

fix(view): test

fix(view): test #118

Workflow file for this run

name: Go CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: "1.25"
- name: Tidy modules
run: go mod tidy
- name: Test
run: go test -v ./...