Skip to content

Commit

Permalink
ci: don't fool around and just use good'ol two step process
Browse files Browse the repository at this point in the history
  • Loading branch information
jakubmikita committed Aug 2, 2023
1 parent 059d0ff commit 6329975
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,20 +28,26 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup PHP ${{ matrix.php }}
# https://github.com/shivammathur/setup-php/issues/446#issuecomment-824001225
uses: shivammathur/setup-php@develop
- name: Setup PHP 7.4
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
php-version: '7.4'
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, mysql, mysqli, pdo_mysql, bcmath, soap, intl, gd, exif, iconv, imagick
coverage: none
tools: none
- name: Install Composer dependencies
uses: "ramsey/composer-install@v2"
- name: Install Composer build dependencies
run: composer bin build install --no-progress
- name: Compose dependencies
run: composer compose
- name: Setup PHP ${{ matrix.php }}
# https://github.com/shivammathur/setup-php/issues/446#issuecomment-824001225
uses: shivammathur/setup-php@develop
with:
php-version: ${{ matrix.php }}
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, mysql, mysqli, pdo_mysql, bcmath, soap, intl, gd, exif, iconv, imagick
coverage: none
tools: none
- name: Analyze
run: composer phpstan
phplint:
Expand Down

0 comments on commit 6329975

Please sign in to comment.