Skip to content

Bump php from 8.3.6-cli-alpine to 8.3.7-cli-alpine #246

Bump php from 8.3.6-cli-alpine to 8.3.7-cli-alpine

Bump php from 8.3.6-cli-alpine to 8.3.7-cli-alpine #246

Workflow file for this run

name: Test
on:
push:
workflow_call:
permissions:
contents: read
jobs:
phpunit:
runs-on: ubuntu-latest
steps:
- name: Setup PHP
id: setup-php
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
- uses: actions/checkout@v4
- name: Validate composer.json and composer.lock
run: composer validate --strict
- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v4
with:
path: vendor
key: ${{ runner.os }}-composer-test-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-composer-test-
- name: Install dependencies
if: steps.composer-cache.outputs.cache-hit != 'true'
run: composer install --prefer-dist --no-progress
- name: Run test suite
run: composer run-script test