Skip to content

Bump php from 8.2.9-cli-alpine to 8.2.10-cli-alpine #108

Bump php from 8.2.9-cli-alpine to 8.2.10-cli-alpine

Bump php from 8.2.9-cli-alpine to 8.2.10-cli-alpine #108

Workflow file for this run

name: Test
on:
push:
workflow_call:
permissions:
contents: read
jobs:
phpunit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Validate composer.json and composer.lock
run: composer validate --strict
- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v3
with:
path: vendor
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-composer-
- 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