Skip to content

Commit

Permalink
Install dependencies in the CI as a dedicated step (#42)
Browse files Browse the repository at this point in the history
  • Loading branch information
theofidry authored Dec 7, 2022
1 parent 80bcfdc commit f7442af
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/integrate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ jobs:
php-version: "${{ matrix.php-version }}"
tools: "phive"

- name: "Install Composer dependencies"
uses: "ramsey/composer-install@v2"

- name: "Install ComposerNormalize"
run: "phive install composer-normalize --trust-gpg-keys C00543248C87FB13"

Expand Down Expand Up @@ -58,6 +61,9 @@ jobs:
php-version: "${{ matrix.php-version }}"
tools: "phive"

- name: "Install Composer dependencies"
uses: "ramsey/composer-install@v2"

- name: "Run Auto-Review tests"
run: "make autoreview"

Expand All @@ -80,6 +86,9 @@ jobs:
coverage: "none"
php-version: "${{ matrix.php-version }}"

- name: "Install Composer dependencies"
uses: "ramsey/composer-install@v2"

- name: "Run the PHPUnit tests"
run: "make phpunit"

Expand All @@ -101,6 +110,9 @@ jobs:
php-version: "${{ matrix.php-version }}"
tools: "phive"

- name: "Install Composer dependencies"
uses: "ramsey/composer-install@v2"

- name: "Install Infection"
run: "phive install infection --trust-gpg-keys C5095986493B4AA0"

Expand Down

0 comments on commit f7442af

Please sign in to comment.