Skip to content

chore: upgrade to php 8.3 #24

chore: upgrade to php 8.3

chore: upgrade to php 8.3 #24

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
php-versions: ['8.3']
name: Test on ${{ matrix.os }} with PHP ${{ matrix.php-versions }}
steps:
- uses: actions/checkout@v4
- name: 🐘 Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
coverage: none
- name: ⬇️ Install dependencies
run: composer install --ignore-platform-reqs
- name: ✅ Run the tests
run: composer phpunit