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:
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
|
||||
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
|
||||
-
|
||||
|
|
Loading…
Reference in a new issue