11 lines
261 B
YAML
11 lines
261 B
YAML
name: ./configure (unit tests)
|
|
description: Configure PHP with minimal settings for unit testing
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- shell: bash
|
|
run: |
|
|
set -x
|
|
./buildconf --force
|
|
./configure --disable-all --enable-embed=static
|