Skip to content

add php 8.1 for test #6

add php 8.1 for test

add php 8.1 for test #6

Workflow file for this run

name: "ci build"
on:
pull_request:
push:
branches:
- "master"
jobs:
build:
name: PHP ${{ matrix.php-versions }}
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, '[ci skip]')"
strategy:
fail-fast: false
matrix:
php-versions: ['8.2']
steps:
- name: Setup PHP Action
uses: shivammathur/setup-php@v2
with:
extensions: intl, json, mbstring, xdebug, xml
php-version: "${{ matrix.php-versions }}"
coverage: xdebug
- name: Checkout
uses: actions/checkout@v2
- name: "Validate composer.json and composer.lock"
run: "composer validate"
- name: "Install dependencies"
run: "composer install --prefer-source --no-progress --no-suggest"
- name: "Run test suite"
run: "composer test"