Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Bump php from 8.2.11-alpine to 8.2.12-alpine (#135) #444

Bump php from 8.2.11-alpine to 8.2.12-alpine (#135)

Bump php from 8.2.11-alpine to 8.2.12-alpine (#135) #444

Workflow file for this run

name: tests
on:
push:
branches: [master, main]
tags-ignore: ['**']
paths-ignore: ['**.md']
pull_request:
paths-ignore: ['**.md']
schedule:
- cron: '0 0 * * 1' # once in a week, docs: <https://git.io/JvxXE#onschedule>
jobs: # Docs: <https://help.github.com/en/articles/workflow-syntax-for-github-actions>
tests:
name: PHP ${{ matrix.php }}, RR ${{ matrix.rr }} (${{ matrix.setup }} setup)
runs-on: ubuntu-20.04
timeout-minutes: 10
strategy:
fail-fast: false
matrix:
setup: ['basic', 'lowest']
php: ['8.0', '8.1', '8.2']
rr: ['2.12.1'] # Releases: <https://github.com/roadrunner-server/roadrunner/releases>
coverage: ['true']
include:
- php: '8.0'
setup: 'lowest'
rr: '2.0.0'
coverage: 'false'
- php: '8.1'
setup: 'basic'
rr: '2.12.1'
coverage: 'false'
steps:
- uses: actions/checkout@v4
- name: Install RoadRunner Binary
run: docker run --rm -v "/:/rootfs:rw" --entrypoint "" spiralscout/roadrunner:${{ matrix.rr }} cp /usr/bin/rr /rootfs/usr/bin/rr
- uses: shivammathur/setup-php@v2 # Action page: <https://github.com/shivammathur/setup-php>
with:
php-version: ${{ matrix.php }}
extensions: xdebug
- name: Get Composer Cache Directory # Docs: <https://github.com/actions/cache/blob/master/examples.md#php---composer>
id: composer-cache
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- name: Cache dependencies # Docs: <https://github.com/actions/cache/blob/master/examples.md#php---composer>
uses: actions/cache@v3
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ matrix.setup }}-${{ hashFiles('**/composer.json') }}
restore-keys: ${{ runner.os }}-composer-
- name: Install lowest Composer dependencies
if: matrix.setup == 'lowest'
run: composer update --prefer-dist --no-interaction --prefer-lowest --no-progress --ansi
- name: Install basic Composer dependencies
if: matrix.setup == 'basic'
run: composer update --prefer-dist --no-interaction --no-progress --ansi
- name: Install "spatie/laravel-ignition" package
if: ${{ startsWith(matrix.php, '8') && matrix.setup == 'basic' }} # only for php >= 8.0
run: composer require --dev spatie/laravel-ignition
- name: Show most important package versions
run: composer info | grep -e laravel -e spiral -e phpunit/phpunit -e phpstan/phpstan
- name: Execute tests
if: matrix.coverage != 'true'
run: composer test
- name: Execute tests with code coverage
if: matrix.coverage == 'true'
env:
XDEBUG_MODE: coverage
run: composer test-cover
- uses: codecov/codecov-action@v3 # Docs: <https://github.com/codecov/codecov-action>
if: matrix.coverage == 'true'
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage/clover.xml
fail_ci_if_error: false