Skip to content

Keep GitHub actions up to date with Dependabot #122

Keep GitHub actions up to date with Dependabot

Keep GitHub actions up to date with Dependabot #122

Workflow file for this run

name: PHP Tests
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
php-version:
- "7.3"
- "7.4"
- "8.0"
- "8.1"
- "8.2"
steps:
- uses: actions/checkout@v3
- name: OS info
run: cat /etc/os-release
- name: "Install PHP"
uses: shivammathur/setup-php@v2
with:
coverage: "none"
php-version: "${{ matrix.php-version }}"
- name: PHP info
run: |
php -v
php -m
- name: Validate composer.json
run: composer validate --strict --no-interaction
- name: Install dependencies
run: composer update --no-progress --no-interaction
- name: Run tests
run: composer test