Skip to content

Commit

Permalink
Install Composer dependencies without dev packages in PECL test
Browse files Browse the repository at this point in the history
Updated the Continuous Integration script to install Composer dependencies excluding dev packages. This change is reflected in the continuous-integration-pecl.yml file, resulting in a cleaner, production-ready environment setup during CI workflow.
  • Loading branch information
koriym committed Jul 9, 2024
1 parent e77b0f6 commit bba6d33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/continuous-integration-pecl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
sudo apt-get install -y autoconf automake libtool bison re2c valgrind
- name: Install Composer dependencies
run: composer install --prefer-dist --no-progress
run: composer install --no-dev --prefer-dist --no-progress

- name: Build extension
id: build_extension
Expand Down

0 comments on commit bba6d33

Please sign in to comment.