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>2022-07-07 20:41:24 +0300
committerdartcafe <github@dartcafe.de>2022-07-07 20:41:24 +0300
commit60e1e038596e0fb76c966fa3624bc1aab9254d34 (patch)
tree0da0fe467a01bd98ae3520df0aaada954f990422 /.github
parent0919adc872540bd77bfc30f2d118c8b83681fcf6 (diff)
remove nc21 and rename jobs
Signed-off-by: dartcafe <github@dartcafe.de>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/lint.yml8
-rw-r--r--.github/workflows/phpunit.yml8
-rw-r--r--.github/workflows/static-analysis.yml2
3 files changed, 10 insertions, 8 deletions
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml
index df28fad1..03a0be09 100644
--- a/.github/workflows/lint.yml
+++ b/.github/workflows/lint.yml
@@ -15,7 +15,7 @@ jobs:
matrix:
php-versions: ['7.4', '8.0', '8.1']
- name: PHP CS php${{ matrix.php-versions }}
+ name: PHP ${{ matrix.php-versions }}
steps:
- name: Checkout repository
@@ -33,7 +33,8 @@ jobs:
eslint:
runs-on: ubuntu-latest
- name: ${{ inputs.lint }} node${{ inputs.node-version }}
+ name: ESLint
+
steps:
- name: Checkout repository
uses: actions/checkout@v2
@@ -49,7 +50,8 @@ jobs:
stylelint:
runs-on: ubuntu-latest
- name: ${{ inputs.lint }} node${{ inputs.node-version }}
+ name: Stylelint
+
steps:
- name: Checkout repository
uses: actions/checkout@v2
diff --git a/.github/workflows/phpunit.yml b/.github/workflows/phpunit.yml
index f7798bce..f02a3499 100644
--- a/.github/workflows/phpunit.yml
+++ b/.github/workflows/phpunit.yml
@@ -26,7 +26,7 @@ jobs:
php-versions: ['7.4', '8.0', '8.1']
server-versions: ['master']
- name: PHPUnit php${{ matrix.php-versions }}-sqlite-${{ matrix.server-versions }}
+ name: SQLite
steps:
- uses: actions/checkout@v2
@@ -61,7 +61,7 @@ jobs:
php-versions: ['8.0']
server-versions: ['stable24', 'stable23']
- name: PHPUnit php${{ matrix.php-versions }}-mysql-${{ matrix.server-versions }}
+ name: MySQL
services:
mysql:
@@ -103,9 +103,9 @@ jobs:
fail-fast: false
matrix:
php-versions: ['7.4']
- server-versions: ['stable22', 'stable21']
+ server-versions: ['stable23', 'stable22']
- name: PHPUnit php${{ matrix.php-versions }}-pgsql-${{ matrix.server-versions }}
+ name: PostgreSQL
services:
postgres:
diff --git a/.github/workflows/static-analysis.yml b/.github/workflows/static-analysis.yml
index b3987beb..c0271d04 100644
--- a/.github/workflows/static-analysis.yml
+++ b/.github/workflows/static-analysis.yml
@@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
- ocp-version: [ 'dev-master', 'dev-stable21' ]
+ ocp-version: [ 'dev-master', 'dev-stable22' ]
php-versions: ['7.4', '8.0']
name: psalm php${{ matrix.php-versions}} ${{ matrix.ocp-version }}