Skip to content

Commit c49c1b3

Browse files
authored
Merge pull request #28 from greg0ire/fix-continuous-integration-worfklow
Fix continuous integration workflow
2 parents f746209 + 8ca1ef4 commit c49c1b3

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/code-coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
dependency-versions: "${{ inputs.composer-dependencies }}"
5555
composer-options: "${{ inputs.composer-options }}"
5656
# Bust the cache at least once a month - output format: YYYY-MM.
57-
custom-cache-suffix: $(date -u "+%Y-%m")
57+
custom-cache-suffix: $(date -u "+%Y-%m") # yamllint disable-line rule:quoted-strings
5858

5959
- name: "Collect code coverage with Xdebug and phpunit/phpunit"
6060
env:

.github/workflows/coding-standards.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
dependency-versions: "${{ inputs.composer-dependencies }}"
6262
composer-options: "${{ inputs.composer-options }}"
6363
# Bust the cache at least once a month - output format: YYYY-MM.
64-
custom-cache-suffix: $(date -u "+%Y-%m")
64+
custom-cache-suffix: $(date -u "+%Y-%m") # yamllint disable-line rule:quoted-strings
6565

6666
- name: "Code style check"
6767
uses: "phpDocumentor/coding-standard@latest"

.github/workflows/continues-integration.yml renamed to .github/workflows/continuous-integration.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,10 +61,10 @@ jobs:
6161
- name: "Install dependencies with Composer"
6262
uses: "ramsey/composer-install@v2"
6363
with:
64-
dependency-versions: "${{ inputs.composer-dependencies }}"
64+
dependency-versions: "${{ matrix.dependencies }}"
6565
composer-options: "${{ inputs.composer-options }}"
6666
# Bust the cache at least once a month - output format: YYYY-MM.
67-
custom-cache-suffix: $(date -u "+%Y-%m")
67+
custom-cache-suffix: $(date -u "+%Y-%m") # yamllint disable-line rule:quoted-strings
6868

6969
- name: "Run tests with phpunit/phpunit"
7070
run: "vendor/bin/phpunit --colors=always --testsuite=${{ inputs.test-suite }}"

.github/workflows/dependency-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
dependency-versions: "${{ inputs.composer-dependencies }}"
6262
composer-options: "${{ inputs.composer-options }}"
6363
# Bust the cache at least once a month - output format: YYYY-MM.
64-
custom-cache-suffix: $(date -u "+%Y-%m")
64+
custom-cache-suffix: $(date -u "+%Y-%m") # yamllint disable-line rule:quoted-strings
6565

6666
- name: "Run maglnet/composer-require-checker"
6767
run: "composer-require-checker check --config-file=$(pwd)/composer-require-checker.json"

.github/workflows/static-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
dependency-versions: "${{ inputs.composer-dependencies }}"
6262
composer-options: "${{ inputs.composer-options }}"
6363
# Bust the cache at least once a month - output format: YYYY-MM.
64-
custom-cache-suffix: $(date -u "+%Y-%m")
64+
custom-cache-suffix: $(date -u "+%Y-%m") # yamllint disable-line rule:quoted-strings
6565

6666
- name: "Create cache directory for phpstan/phpstan"
6767
run: "mkdir -p .build/phpstan"

0 commit comments

Comments
 (0)