mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-22 19: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:
parent
a9026832d6
commit
f9aac63ae7
1 changed files with 2 additions and 1 deletions
3
.github/workflows/ci.yml
vendored
3
.github/workflows/ci.yml
vendored
|
@ -166,7 +166,7 @@ jobs:
|
||||||
- ^10.4
|
- ^10.4
|
||||||
functional-tests:
|
functional-tests:
|
||||||
name: "Functional tests"
|
name: "Functional tests"
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-18.04
|
||||||
needs: php-lint
|
needs: php-lint
|
||||||
steps:
|
steps:
|
||||||
-
|
-
|
||||||
|
@ -178,6 +178,7 @@ jobs:
|
||||||
with:
|
with:
|
||||||
php-version: "${{ matrix.php-version }}"
|
php-version: "${{ matrix.php-version }}"
|
||||||
tools: composer:v2
|
tools: composer:v2
|
||||||
|
extensions: mysqli
|
||||||
- name: "Show Composer version"
|
- name: "Show Composer version"
|
||||||
run: composer --version
|
run: composer --version
|
||||||
-
|
-
|
||||||
|
|
Loading…
Reference in a new issue