Skip to content

Bump actions/checkout from 4.1.5 to 4.1.6 #1507

Bump actions/checkout from 4.1.5 to 4.1.6

Bump actions/checkout from 4.1.5 to 4.1.6 #1507

Workflow file for this run

name: Integration
on:
pull_request:
push:
branches:
- master
- production
jobs:
integration:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: ['7.3', '7.4', '8.0']
name: php
steps:
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
- name: Set up php ${{ matrix.php-versions }}
uses: shivammathur/setup-php@c665c7a15b5295c2488ac8a87af9cb806cd72198 # v2.30.4
with:
php-version: ${{ matrix.php-versions }}
coverage: none
- name: Install composer
run: composer install
- name: Start webserver
run: php -S localhost:8888 index.php &
- name: Run behat
run: cd tests/integration && ../../vendor/bin/behat --colors .
summary:
runs-on: ubuntu-latest
needs: integration
if: always()
name: integration-summary
steps:
- name: Summary status
run: if ${{ needs.integration.result != 'success' && needs.integration.result != 'skipped' }}; then exit 1; fi