Skip to content

ci(deps): bump actions/checkout from 5.0.0 to 6.0.2 #160

ci(deps): bump actions/checkout from 5.0.0 to 6.0.2

ci(deps): bump actions/checkout from 5.0.0 to 6.0.2 #160

Workflow file for this run

name: tests
on:
push:
tags:
- v*
branches:
- main
pull_request:
permissions:
contents: read
jobs:
tests:
name: tests
strategy:
matrix:
include:
- php: '8.1'
- php: '8.2'
- php: '8.3'
- php: '8.4'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Setup PHP
uses: shivammathur/setup-php@44454db4f0199b8b9685a5d763dc37cbf79108e1 # v2.36.0
with:
php-version: "${{ matrix.php }}"
coverage: none
- name: Install dependencies
run: composer install
- name: Run tests
run: composer tools:run:phpunit