Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixing CI #201

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 12 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,17 +28,22 @@ jobs:

strategy:
matrix:
php-versions: ["7.4", "8.0"]
nextcloud: ['25.0.3']
php-versions: ["8.0", "8.1"]
nextcloud: ['25.0.13']

services:
mysql:
mariadb:
image: mariadb:11.1
env:
MARIADB_ROOT_PASSWORD: rootpassword
MYSQL_DATABASE: nextcloud
options: >-
--health-cmd mysqladmin ping
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 4444:3306/tcp
env:
MYSQL_ROOT_PASSWORD: rootpassword
options: --health-cmd="mysqladmin ping" --health-interval 5s --health-timeout 2s --health-retries 5

steps:
- name: Set up php ${{ matrix.php-versions }}
Expand Down Expand Up @@ -174,7 +179,7 @@ jobs:
strategy:
matrix:
php-versions: ["8.0"]
nextcloud: ['25.0.3']
nextcloud: ['25.0.13']

services:
postgres:
Expand Down
Loading