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:
authorRené Gieling <github@dartcafe.de>2021-05-22 18:13:16 +0300
committerGitHub <noreply@github.com>2021-05-22 18:13:16 +0300
commit56d4220d563776b0b79788c7e7843cb985e82312 (patch)
tree34cc7b9844561afb5c56f0bb70a40f34042dad1c /.github
parentb845e6e51135dfa9bde2743c4ec8f6a104036cfd (diff)
Enh/email markdown (#1631)
* Render poll description in invitations with markdown * update makefile * remove doctrine/orm * psalm ignore doctrine errors * update workflows
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/app-code-check-7.yml2
-rw-r--r--.github/workflows/app-code-check-8.yml2
-rw-r--r--.github/workflows/phpunit.yml10
3 files changed, 7 insertions, 7 deletions
diff --git a/.github/workflows/app-code-check-7.yml b/.github/workflows/app-code-check-7.yml
index 047aadc8..c681683b 100644
--- a/.github/workflows/app-code-check-7.yml
+++ b/.github/workflows/app-code-check-7.yml
@@ -17,7 +17,7 @@ jobs:
strategy:
matrix:
php-versions: ['7.4']
- server-versions: ['master', 'stable19', 'stable20']
+ server-versions: ['master', 'stable20', 'stable21']
name: AppCode check php${{ matrix.php-versions }}-${{ matrix.server-versions }}
steps:
diff --git a/.github/workflows/app-code-check-8.yml b/.github/workflows/app-code-check-8.yml
index 86dc8885..59f8428e 100644
--- a/.github/workflows/app-code-check-8.yml
+++ b/.github/workflows/app-code-check-8.yml
@@ -17,7 +17,7 @@ jobs:
strategy:
matrix:
php-versions: ['8.0']
- server-versions: ['master']
+ server-versions: ['master', 'stable21']
name: AppCode check php${{ matrix.php-versions }}-${{ matrix.server-versions }}
steps:
diff --git a/.github/workflows/phpunit.yml b/.github/workflows/phpunit.yml
index 69003945..289f568c 100644
--- a/.github/workflows/phpunit.yml
+++ b/.github/workflows/phpunit.yml
@@ -11,7 +11,7 @@ env:
APP_NAME: polls
jobs:
- php:
+ sqlite:
runs-on: ubuntu-latest
strategy:
@@ -20,7 +20,7 @@ jobs:
matrix:
php-versions: ['7.4', '8.0']
databases: ['sqlite']
- server-versions: ['master']
+ server-versions: ['master', 'stable21']
name: php${{ matrix.php-versions }}-${{ matrix.databases }}-${{ matrix.server-versions }}
@@ -79,9 +79,9 @@ jobs:
# do not stop on another job's failure
fail-fast: false
matrix:
- php-versions: ['7.3', '7.4', '8.0']
+ php-versions: ['7.4', '8.0']
databases: ['mysql']
- server-versions: ['master']
+ server-versions: ['master', 'stable21']
name: php${{ matrix.php-versions }}-${{ matrix.databases }}-${{ matrix.server-versions }}
@@ -151,7 +151,7 @@ jobs:
matrix:
php-versions: ['7.4', '8.0']
databases: ['pgsql']
- server-versions: ['master']
+ server-versions: ['master', 'stable21']
name: php${{ matrix.php-versions }}-${{ matrix.databases }}-${{ matrix.server-versions }}