Skip to content

updated test action checkout to v4 #20

updated test action checkout to v4

updated test action checkout to v4 #20

Workflow file for this run

name: PHP tests
on:
push:
pull_request:
jobs:
tests:
timeout-minutes: 10
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup PHP 8.0
uses: shivammathur/setup-php@v2
with:
php-version: 8.0
- name: Setup PHP latest
uses: shivammathur/setup-php@v2
with:
php-version: latest
- name: Run tests with PHP 8.0
run: php8.0 tests/test-all.php
- name: Run tests with PHP latest
run: php tests/test-all.php