Skip to content

Bump actions/checkout from 4 to 5 in the github-actions group #12

Bump actions/checkout from 4 to 5 in the github-actions group

Bump actions/checkout from 4 to 5 in the github-actions group #12

Workflow file for this run

name: "PHP Tests"
on:
push:
branches:
- "master"
pull_request: null
permissions:
contents: "read"
jobs:
test:
runs-on: "ubuntu-latest"
strategy:
matrix:
php-version:
- "7.3"
- "7.4"
- "8.0"
- "8.1"
- "8.2"
- "8.3"
- "8.4"
steps:
- name: "Checkout repository"
uses: "actions/checkout@v5"
- name: "Set up PHP"
uses: "shivammathur/setup-php@v2"
with:
coverage: "none"
php-version: "${{ matrix.php-version }}"
- name: "Vadliate composer"
run: "composer validate --strict"
- name: "Install dependencies"
run: "composer update --no-interaction"
- run: "composer run test"