From 068eaa7839c5eeb6df19204f16178acaec8b7876 Mon Sep 17 00:00:00 2001 From: ARCANEDEV Date: Mon, 18 Mar 2024 22:57:53 +0000 Subject: [PATCH 1/2] Update the misc files --- .github/workflows/run-tests.yml | 5 ++--- .gitignore | 6 ++++-- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 6f69c3d..63b07ea 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -9,7 +9,7 @@ jobs: strategy: fail-fast: true matrix: - php: [8.0, 8.1] + php: [8.0, 8.1, 8.2, 8.3] dependency-version: [prefer-lowest, prefer-stable] name: PHP ${{ matrix.php }} - ${{ matrix.dependency-version }} @@ -23,7 +23,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: fetch-depth: 2 @@ -38,7 +38,6 @@ jobs: with: php-version: ${{ matrix.php }} extensions: curl, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, iconv - tools: composer:v2 coverage: pcov - name: Install dependencies diff --git a/.gitignore b/.gitignore index 697e972..aea4dfb 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,6 @@ -/build/ -/vendor/ +/.idea +/build +/vendor +.phpunit.result.cache composer.lock composer.phar From 6483878b68bcdcb9d2545627d0252577fc213505 Mon Sep 17 00:00:00 2001 From: ARCANEDEV Date: Mon, 18 Mar 2024 23:00:50 +0000 Subject: [PATCH 2/2] Revert the newer PHP versions --- .github/workflows/run-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 63b07ea..ba093de 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -9,7 +9,7 @@ jobs: strategy: fail-fast: true matrix: - php: [8.0, 8.1, 8.2, 8.3] + php: [8.0, 8.1] dependency-version: [prefer-lowest, prefer-stable] name: PHP ${{ matrix.php }} - ${{ matrix.dependency-version }}