mirror of https://github.com/FriendsOfTYPO3/tea.git synced 2024-11-09 23:36:12 +01:00

[BUGFIX] Explicitly set the Ubuntu version for GitHub Actions (#162)

This fixes a warning when running the CI build.

As the functional tests currently do not run with the Ubuntu 20.04
runner, we need to keep using 18.04.

Also explicitly require the `mysqli` PHP extension.
This commit is contained in:
Oliver Klee 2020-11-27 01:41:24 +01:00 committed by GitHub
parent a9026832d6
commit f9aac63ae7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -166,7 +166,7 @@ jobs:
- ^10.4
functional-tests:
name: "Functional tests"
runs-on: ubuntu-latest
runs-on: ubuntu-18.04
needs: php-lint
steps:
-
@ -178,6 +178,7 @@ jobs:
with:
php-version: "${{ matrix.php-version }}"
tools: composer:v2
extensions: mysqli
- name: "Show Composer version"
run: composer --version
-