mirror of
https://github.com/friendica/friendica
synced 2024-12-26 13:20:16 +00:00
Try different port style
This commit is contained in:
parent
7176ba5a0a
commit
5066e4b6e0
1 changed files with 8 additions and 3 deletions
11
.github/workflows/php.yml
vendored
11
.github/workflows/php.yml
vendored
|
@ -6,6 +6,7 @@ jobs:
|
||||||
friendica:
|
friendica:
|
||||||
name: Friendica (PHP ${{ matrix.php-versions }})
|
name: Friendica (PHP ${{ matrix.php-versions }})
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
services:
|
services:
|
||||||
mariadb:
|
mariadb:
|
||||||
image: mariadb:latest
|
image: mariadb:latest
|
||||||
|
@ -15,21 +16,25 @@ jobs:
|
||||||
MYSQL_PASSWORD: test
|
MYSQL_PASSWORD: test
|
||||||
MYSQL_USER: test
|
MYSQL_USER: test
|
||||||
ports:
|
ports:
|
||||||
- 3306/tcp
|
- 3306
|
||||||
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
|
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
|
||||||
|
|
||||||
redis:
|
redis:
|
||||||
image: redis
|
image: redis
|
||||||
ports:
|
ports:
|
||||||
- 6379/tcp
|
- 6379
|
||||||
options: --health-cmd="redis-cli ping" --health-interval=10s --health-timeout=5s --health-retries=3
|
options: --health-cmd="redis-cli ping" --health-interval=10s --health-timeout=5s --health-retries=3
|
||||||
|
|
||||||
memcached:
|
memcached:
|
||||||
image: memcached
|
image: memcached
|
||||||
ports:
|
ports:
|
||||||
- 11211/tcp
|
- 11211
|
||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
php-versions: ['7.4', '8.0', '8.1', '8.2', '8.3', '8.4']
|
php-versions: ['7.4', '8.0', '8.1', '8.2', '8.3', '8.4']
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
Loading…
Reference in a new issue