Skip to content

Commit

Permalink
if we're running tests on php 7.4, run a composer update
Browse files Browse the repository at this point in the history
  • Loading branch information
jazzsequence committed Oct 25, 2023
1 parent 06dfd55 commit f5a8258
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,10 @@ jobs:
- name: Checkout
uses: actions/checkout@v3
- name: Install Dependencies
run: composer install
run: |
if [[ "${{ matrix.php }}" == "7.4" ]]; then
composer update
fi
composer install
- name: Code Style
run: composer lint

0 comments on commit f5a8258

Please sign in to comment.