frankenphp/.github/workflows/tests.yml

30 lines
818 B
YAML
Raw Normal View History

name: Tests
on: [push, pull_request]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
2023-07-04 14:52:55 +00:00
php-versions: ['8.2', '8.3']
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: '1.20'
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
ini-file: development
ini-values: output_buffering=Off
2023-07-04 14:54:40 +00:00
extensions: none opcache
coverage: none
env:
phpts: ts
- name: Set include flags
run: echo "CGO_CFLAGS=$(php-config --includes)" >> "$GITHUB_ENV"
- name: Run library tests
run: go test -race -v ./...
- name: Run Caddy module tests
working-directory: caddy/
run: go test -race -v ./...