Skip to content

chore: add support to php 8 and drop php 7.x #12

chore: add support to php 8 and drop php 7.x

chore: add support to php 8 and drop php 7.x #12

name: Continuous Integration
on:
- pull_request
- push
jobs:
testing:
name: Tests
runs-on: ubuntu-latest
strategy:
matrix:
php:
- "8.0"
- "8.1"
- "8.2"
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: PHP setup
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
- name: Composer
uses: ramsey/composer-install@v2
- name: Running tests
run: vendor/bin/phpunit