Skip to content

feat: add HTTP forward proxy module with MITM support #19

feat: add HTTP forward proxy module with MITM support

feat: add HTTP forward proxy module with MITM support #19

Workflow file for this run

name: CI
on:
push:
branches: [master, main]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Create embed placeholders
run: |
# Frontend placeholder (embedded via go:embed)
mkdir -p internal/frontend/dist
echo '<!DOCTYPE html><html><body>placeholder</body></html>' > internal/frontend/dist/index.html
# VarDumper PHP parser placeholder (embedded via go:embed per-platform)
mkdir -p modules/vardumper/bin
echo 'placeholder' > modules/vardumper/bin/vardumper-parser-linux-amd64
- name: Build
run: go build ./cmd/buggregator
- name: Vet
run: go vet ./...
- name: Test
run: go test ./... -short -count=1