Skip to content

build(deps): bump vite from 4.3.0 to 4.3.9 in /web (#799) #257

build(deps): bump vite from 4.3.0 to 4.3.9 in /web (#799)

build(deps): bump vite from 4.3.0 to 4.3.9 in /web (#799) #257

Workflow file for this run

name: Tester
on:
push:
branches:
- master
pull_request:
jobs:
PHPUnit:
name: ${{ matrix.os }}-php${{ matrix.php-version }}-${{ matrix.framework }}
runs-on: "${{ matrix.os }}"
strategy:
fail-fast: true
matrix:
os: [ ubuntu-latest ]
framework:
- default
- laravel
- hyperf
php-version:
- 7.4
- 8.0
- 8.1
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
extensions: openssl
coverage: none
- name: Laravel Framework
if: matrix.framework == 'laravel'
run: composer require illuminate/container:^8.0
- name: Hyperf Framework
if: matrix.framework == 'hyperf'
run: composer require hyperf/utils hyperf/pimple
- name: Other/No Framework
if: matrix.framework == 'default'
run: composer require hyperf/pimple
- name: Run PHPUnit
run: composer test