Skip to content

Commit 9279538

Browse files
committed
chore: minor changes
1 parent 4122af4 commit 9279538

File tree

5 files changed

+6
-9
lines changed

5 files changed

+6
-9
lines changed

.github/workflows/coding-standards.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,6 @@ on: # yamllint disable-line rule:truthy
44
pull_request:
55
branches:
66
- master
7-
push:
8-
branches:
9-
- master
107

118
name: 🧹 Fix PHP coding standards
129

.github/workflows/dependency-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
key: php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('composer.lock') }}
6767
restore-keys: php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-
6868

69-
- name: 📥 Install "${{ matrix.dependencies }}" dependencies
69+
- name: 📥 Install "${{ matrix.dependencies }}" dependencies with composer
7070
uses: wayofdev/gh-actions/actions/composer/install@v3.1.1
7171
with:
7272
dependencies: ${{ matrix.dependencies }}

.github/workflows/security-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
key: php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('composer.lock') }}
5555
restore-keys: php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-
5656

57-
- name: 📥 Install "${{ matrix.dependencies }}" dependencies
57+
- name: 📥 Install "${{ matrix.dependencies }}" dependencies with composer
5858
uses: wayofdev/gh-actions/actions/composer/install@v3.1.1
5959
with:
6060
dependencies: ${{ matrix.dependencies }}

.github/workflows/static-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ jobs:
119119
key: php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('composer.lock') }}
120120
restore-keys: php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-
121121

122-
- name: 📥 Install "${{ matrix.dependencies }}" dependencies
122+
- name: 📥 Install "${{ matrix.dependencies }}" dependencies with composer
123123
uses: wayofdev/gh-actions/actions/composer/install@v3.1.1
124124
with:
125125
dependencies: ${{ matrix.dependencies }}

.github/workflows/testing.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
---
22

3-
name: 🧪 Unit testing
4-
53
on: # yamllint disable-line rule:truthy
64
pull_request:
75
branches:
@@ -10,6 +8,8 @@ on: # yamllint disable-line rule:truthy
108
branches:
119
- master
1210

11+
name: 🧪 Unit testing
12+
1313
jobs:
1414
code-coverage:
1515
timeout-minutes: 4
@@ -56,7 +56,7 @@ jobs:
5656
key: php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('composer.lock') }}
5757
restore-keys: php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-
5858

59-
- name: 📥 Install "${{ matrix.dependencies }}" dependencies
59+
- name: 📥 Install "${{ matrix.dependencies }}" dependencies with composer
6060
uses: wayofdev/gh-actions/actions/composer/install@v3.1.1
6161
with:
6262
dependencies: ${{ matrix.dependencies }}

0 commit comments

Comments
 (0)