name: Go CI on: push: branches: [ main ] pull_request: branches: [ main ] jobs: test: runs-on: ubuntu-latest steps: - name: Checkout code uses: actions/checkout@v4 - name: Set up Go uses: actions/setup-go@v5 with: go-version: '1.25' - name: Install system dependencies run: sudo apt-get update && sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.1-dev - name: Install dependencies run: go mod tidy - name: Run tests and generate coverage report run: go test -v -coverprofile=coverage.out ./... - name: Upload coverage to Codecov uses: codecov/codecov-action@v4