Skip to content

Commit

Permalink
Mise à jour de la validation de composer dans le GitHub workflow
Browse files Browse the repository at this point in the history
L'étape "Validate composer.json" dans le fichier de workflow GitHub (.github/workflows/ci.yaml) a été mise à jour. L'option '--strict' de la commande composer validate a été supprimée afin d'ignorer le warning sur "friendsofphp/php-cs-fixer : exact version constraints"
  • Loading branch information
roukmoute committed Jun 3, 2024
1 parent 18972e8 commit 7b05f8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
tools: composer:v2

- name: "Validate composer.json"
run: "composer validate --strict --no-check-lock"
run: "composer validate --no-check-lock"

- name: Configure environment
run: |
Expand Down

0 comments on commit 7b05f8d

Please sign in to comment.