Skip to content

Add PHP 8.3 and bump actions (#156) #52

Add PHP 8.3 and bump actions (#156)

Add PHP 8.3 and bump actions (#156) #52

Workflow file for this run

name: test-unit
on:
push:
branches:
- master
- main
pull_request:
jobs:
run:
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: [ 'ubuntu-latest' ]
php-versions: [ '5.6', '7.0', '7.1', '7.2', '7.3', '8.0', '8.1', '8.2', '8.3' ]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Cache vendor
uses: actions/cache@v3
with:
path: |
vendor
key: deps-${{ hashFiles('composer.lock') }}
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
ini-values: post_max_size=256M, max_execution_time=180
tools: composer
- name: Populate vendor
run: '[ -e vendor ] || composer install'
- name: Run Tests
run: make deps test