From 82430882f0cb9cab23face35728513fc8e14ee97 Mon Sep 17 00:00:00 2001 From: fadrian06 Date: Mon, 22 Jun 2026 17:19:30 -0400 Subject: [PATCH] decorate workflow --- .github/workflows/test.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c0eb8d1..3bea429 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,9 +1,9 @@ -name: Pull Request Check +name: ๐Ÿš€ Pull Request Check ๐Ÿ” on: [pull_request] jobs: unit-test: - name: Unit testing + name: ๐Ÿงช Unit Testing - PHP ${{ matrix.php }} on ${{ matrix.os }} strategy: fail-fast: false matrix: @@ -11,15 +11,17 @@ jobs: os: [ubuntu-latest, windows-latest, macos-latest] runs-on: ${{ matrix.os }} steps: - - name: Checkout repository + - name: ๐Ÿ“‚ Checkout repository uses: actions/checkout@v6 with: fetch-depth: 0 - - uses: shivammathur/setup-php@v2 + - name: ๐Ÿ˜ Setup PHP ${{ matrix.php }} + uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php }} extensions: mbstring, pdo_sqlite, fileinfo tools: composer:v2 - - run: | + - name: ๐Ÿ“ฆ Install dependencies and ๐Ÿงช Run tests + run: | composer install --no-progress --no-ansi -n composer test -- --colors=never --no-interaction