Skip to content

fix(ui): resources panel bottom alignment with details panel #17

fix(ui): resources panel bottom alignment with details panel

fix(ui): resources panel bottom alignment with details panel #17

Workflow file for this run

name: Test
on:
push:
branches: [ main ]
paths:
- 'main.go'
- 'go.mod'
- 'go.sum'
- 'pkg/**'
pull_request:
branches: [ main ]
paths:
- 'main.go'
- 'go.mod'
- 'go.sum'
- 'pkg/**'
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: '1.26.1'
- name: Download dependencies
run: go mod download
- name: Check formatting
run: |
if [ "$(gofmt -l . | wc -l)" -gt 0 ]; then
echo "The following files need formatting:"
gofmt -l .
exit 1
fi
- name: Run tests
run: go test ./pkg/... -v -timeout 60s
- name: Build
run: go build -v .