Skip to content

debug

debug #742

Workflow file for this run

name: Tests
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php-versions: ['8.2', '8.3'] # 8.3 is disabled because of https://github.com/shivammathur/setup-php/issues/783
steps:
-
uses: actions/checkout@v4
-
uses: actions/setup-go@v4
with:
go-version: '1.21'
cache-dependency-path: |
go.sum
caddy/go.sum
-
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
ini-file: development
coverage: none
tools: none
env:
phpts: ts
debug: true
-
name: Set CGO flags
run: |
echo "CGO_CFLAGS=$(php-config --includes)" >> "$GITHUB_ENV"
-
name: Build
run: go build
env:
GOEXPERIMENT: cgocheck2
-
name: Build testcli binary
working-directory: internal/testcli/
run: go build
-
run: |
sudo apt install gdb
mkdir -p /home/runner/.config/gdb/
printf "set auto-load safe-path /\nhandle SIG34 nostop noprint pass" > /home/runner/.config/gdb/gdbinit
-
uses: mxschmitt/action-tmate@v3
-
name: Run library tests
run: go test -race -v ./...
-
name: Run Caddy module tests
working-directory: caddy/
run: go test -race -v ./...