From dff747bf8e28e852ff31712e3fe3cfed96d5ef3e Mon Sep 17 00:00:00 2001 From: Thoriq Firdaus <2067467+tfirdaus@users.noreply.github.com> Date: Sun, 3 Aug 2025 09:47:39 +0700 Subject: [PATCH] Update workflow configs --- .github/workflows/ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4cc5ca0..c4fba77 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -43,7 +43,7 @@ jobs: - name: Setup PHP uses: shivammathur/setup-php@v2 with: - php-version: 7.4 + php-version: "7.4" - name: Install PHP dependencies uses: ramsey/composer-install@v3 @@ -62,7 +62,7 @@ jobs: - name: Setup PHP uses: shivammathur/setup-php@v2 with: - php-version: 7.4 + php-version: "7.4" - name: Install PHP dependencies uses: ramsey/composer-install@v3 @@ -80,8 +80,8 @@ jobs: max-parallel: 3 matrix: php-version: ["7.4", "8.0", "8.1", "8.2", "8.3", "8.4"] - stability: [lowest, stable] - machine: [windows-latest, ubuntu-latest] + dependencies: [lowest, highest] + os: [windows-latest, ubuntu-latest] steps: - name: Checkout code @@ -95,7 +95,7 @@ jobs: - name: Install PHP dependencies uses: ramsey/composer-install@v3 with: - dependency-versions: ${{ matrix.stability }} + dependency-versions: ${{ matrix.dependencies }} - name: Install bashunit run: | @@ -107,5 +107,5 @@ jobs: run: composer test - name: Run bashunit test - if: matrix.machine != 'windows-latest' + if: matrix.os != 'windows-latest' run: ./lib/bashunit ./tests/bashunit/*.sh