Skip to content

refactor(app): enhance error handling with formatted bridge error mes… #3

refactor(app): enhance error handling with formatted bridge error mes…

refactor(app): enhance error handling with formatted bridge error mes… #3

name: Compilation Verification
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
verify:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
go-version: ["1.25.x"]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Go ${{ matrix.go-version }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Download dependencies
run: go mod download
- name: Run tests
run: go test ./...
- name: Verify build
run: go build ./...