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

github.com/nextcloud/twofactor_totp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2022-04-04 11:01:38 +0300
committerJohn Molakvoæ <skjnldsv@protonmail.com>2022-04-15 09:59:42 +0300
commitc5d2ea78ffca0b312ebd31e64585436bbc364a93 (patch)
treecaf79d678d025796b242ad422946622e8d71ea7d
parentf8163eb4d1d6de67e781acb334329ad475983a23 (diff)
Update master php testing versions
Signed-off-by: Joas Schilling <coding@schilljs.com>
-rw-r--r--.github/workflows/lint-php.yml2
-rw-r--r--.github/workflows/test.yml11
2 files changed, 11 insertions, 2 deletions
diff --git a/.github/workflows/lint-php.yml b/.github/workflows/lint-php.yml
index a4abc44..514e71f 100644
--- a/.github/workflows/lint-php.yml
+++ b/.github/workflows/lint-php.yml
@@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
- php-versions: ["7.4", "8.0"]
+ php-versions: ["7.3", "7.4", "8.0", "8.1"]
name: php-lint
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 8eb66bc..e52139b 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -60,10 +60,19 @@ jobs:
strategy:
matrix:
- php-version: [ 7.4, 8.0 ]
+ php-version: [ "7.4", "8.0" ]
nextcloud-version: [ 'master', 'stable21' ]
browser: [ 'firefox', 'chrome' ]
db: [ 'mysql' ]
+ include:
+ - php-versions: "8.1"
+ nextcloud-versions: "master"
+ browser: 'firefox'
+ db: 'mysql'
+ - php-versions: "8.1"
+ nextcloud-versions: "master"
+ browser: 'chrome'
+ db: 'mysql'
name: Nextcloud ${{ matrix.nextcloud-version }} acceptance tests on php${{ matrix.php-version }}/${{ matrix.browser }}/${{ matrix.db }}