Skip to content

Commit 89bfa4d

Browse files
committed
streamlined github actions
1 parent 5d8ab61 commit 89bfa4d

File tree

2 files changed

+4
-17
lines changed

2 files changed

+4
-17
lines changed

.github/workflows/coverage.yml

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -119,18 +119,13 @@ jobs:
119119
- name: Setup PHP
120120
run: |
121121
apt-get update && apt-get install -y \
122-
libfreetype6-dev \
123-
libjpeg62-turbo-dev \
124-
libmcrypt-dev \
125-
libpng-dev \
126122
libzip-dev \
127-
zip \
128123
unzip \
129124
wget \
130125
git \
131-
&& docker-php-ext-install -j$(nproc) gd sockets bcmath \
132-
&& pecl install ds xdebug \
133-
&& docker-php-ext-enable ds xdebug
126+
&& docker-php-ext-install -j$(nproc) bcmath \
127+
&& pecl install xdebug \
128+
&& docker-php-ext-enable xdebug
134129
- name: Install Composer
135130
run: curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
136131
- name: Install dependencies

.github/workflows/tests.yml

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -126,17 +126,9 @@ jobs:
126126
- name: Setup PHP
127127
run: |
128128
apt-get update && apt-get install -y \
129-
libfreetype6-dev \
130-
libjpeg62-turbo-dev \
131-
libmcrypt-dev \
132-
libpng-dev \
133129
libzip-dev \
134-
zip \
135130
unzip \
136-
wget \
137-
&& docker-php-ext-install -j$(nproc) gd sockets bcmath \
138-
&& pecl install ds xdebug \
139-
&& docker-php-ext-enable ds xdebug
131+
&& docker-php-ext-install -j$(nproc) bcmath \
140132
- name: Install Composer
141133
run: curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
142134
- name: Install dependencies

0 commit comments

Comments
 (0)