Skip to content

Fix install scripts breaking desktop-wide icons via stub hicolor inde… #36

Fix install scripts breaking desktop-wide icons via stub hicolor inde…

Fix install scripts breaking desktop-wide icons via stub hicolor inde… #36

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
env:
CGO_ENABLED: "1"
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: gofmt (our code only, not vendored third_party)
run: |
unformatted="$(gofmt -l main.go cmd internal)"
if [ -n "$unformatted" ]; then
echo "These files are not gofmt-formatted:"; echo "$unformatted"
echo "Run: gofmt -w main.go cmd internal"
exit 1
fi
- name: vet
run: go vet ./...
- name: tests (pure logic, no voice)
run: go test ./...