mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
11 lines
296 B
YAML
11 lines
296 B
YAML
name: Setup Caddy server
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- shell: bash
|
|
run: |
|
|
set -x
|
|
sudo curl 'https://caddyserver.com/api/download?os=linux&arch=amd64' -o /usr/bin/caddy
|
|
sudo chmod +x /usr/bin/caddy
|
|
sudo caddy start --config ext/curl/tests/Caddyfile
|