Skip to content

Pull Request Spanish Language and correction for work in XAMPP #287

Pull Request Spanish Language and correction for work in XAMPP

Pull Request Spanish Language and correction for work in XAMPP #287

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: ['7.3', '7.4']
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"