Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/polls.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordartcafe <github@dartcafe.de>2020-09-02 22:11:01 +0300
committerdartcafe <github@dartcafe.de>2020-09-02 22:11:01 +0300
commit300200af6d2857c3eacacb3f83bfadeac2662a6d (patch)
treef0a5113346456e9f0c12f734a9528b11bf4b1cac /.github
parent28fda0d28ff5db1597c9b6260b9b39b93b639aa7 (diff)
adding php versions
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/app-code-check.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/app-code-check.yml b/.github/workflows/app-code-check.yml
index 84a16713..e9bbb991 100644
--- a/.github/workflows/app-code-check.yml
+++ b/.github/workflows/app-code-check.yml
@@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
- php-versions: ['7.4']
+ php-versions: ['7.2', '7.3' '7.4']
nextcloud-versions: ['master']
name: AppCode check
steps:
@@ -17,7 +17,7 @@ jobs:
uses: shivammathur/setup-php@master
with:
php-version: ${{ matrix.php-versions }}
- extension-csv: ctype,curl,dom,gd,iconv,intl,json,mbstring,openssl,posix,sqlite,xml,zip
+ extensions: ctype,curl,dom,gd,iconv,intl,json,mbstring,openssl,posix,sqlite,xml,zip
coverage: xdebug
- name: Checkout Nextcloud
run: git clone https://github.com/nextcloud/server.git --recursive --depth 1 -b ${{ matrix.nextcloud-versions }} nextcloud