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:49:22 +0300
committerdartcafe <github@dartcafe.de>2022-07-07 20:49:22 +0300
commit9a386e30eca75fc82fd7817b18a82397295984ce (patch)
tree09f8a8a5112d783b74a784f3d85bdaf5e2234700 /.github
parent51e645ca3142e34add6e59e635aa4dab66598acb (diff)
remove matrix from job name
Signed-off-by: dartcafe <github@dartcafe.de>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/lint.yml2
-rw-r--r--.github/workflows/static-analysis.yml4
2 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml
index 03a0be09..0cf560da 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 ${{ matrix.php-versions }}
+ name: PHP-CS
steps:
- name: Checkout repository
diff --git a/.github/workflows/static-analysis.yml b/.github/workflows/static-analysis.yml
index b117d29d..d0c5a142 100644
--- a/.github/workflows/static-analysis.yml
+++ b/.github/workflows/static-analysis.yml
@@ -1,4 +1,4 @@
-name: Psalm
+name: Static analysis
on:
pull_request:
@@ -15,7 +15,7 @@ jobs:
ocp-version: [ 'dev-master', 'dev-stable22' ]
php-versions: ['7.4', '8.0']
- name: PHP ${{ matrix.php-versions}} ${{ matrix.ocp-version }}
+ name: Psalm
steps:
- uses: actions/checkout@master