This commit is contained in:
loviuz 2021-05-15 18:43:48 +02:00 committed by GitHub
parent ef79b2dcf6
commit 2db955ebcb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -26,11 +26,11 @@ jobs:
- name: Setup PHP
run: |
sudo apt-get update && sudo apt-get -y upgrade
sudo apt -y install php php-json php-common php-mysql php-zip php-gd php-mbstring php-curl php-xml php-xsl php-intl php-soap libapache2-mod-php
sudo apt-get update
sudo apt -y install php7.4 php7.4-json php7.4-mysql php7.4-zip php7.4-gd php7.4-mbstring php7.4-curl php7.4-xml php7.4-xsl php7.4-intl php7.4-soap libapache2-mod-php7.4
- name: Enabling PHP module
run: sudo a2enmod php
run: sudo a2enmod php7.4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2