Skip to content

Commit

Permalink
Changed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergey Pashkevich committed Oct 7, 2023
1 parent f42a764 commit 15fda09
Showing 1 changed file with 34 additions and 29 deletions.
63 changes: 34 additions & 29 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -1,34 +1,39 @@
name: tests

on:
push:
pull_request:
push:
branches:
- master
pull_request:
schedule:
- cron: '0 0 * * *'

jobs:
tests:

runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
php: [7.4]

name: P${{ matrix.php }}

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: dom, curl, libxml, mbstring, zip
tools: composer:v2
coverage: none

- name: Install dependencies
run: composer install --no-interaction --prefer-dist --no-interaction --no-progress

- name: Execute tests
run: vendor/bin/phpunit --verbose
tests:

runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
php: [ 7.4, 8.0, 8.1, 8.2 ]

name: PHP ${{ matrix.php }}

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: dom, curl, libxml, mbstring, zip
ini-values: error_reporting=E_ALL
tools: composer:v2
coverage: none

- name: Install dependencies
run: composer install --no-interaction --no-interaction --no-progress

- name: Execute tests
run: vendor/bin/phpunit --verbose

0 comments on commit 15fda09

Please sign in to comment.