From c7c1aa3a0e700aef76f00f86602245208cba21c8 Mon Sep 17 00:00:00 2001 From: Art4 Date: Wed, 1 Feb 2023 08:38:46 +0100 Subject: [PATCH] improve test call, downgrade actions/checkout in favor of #783 --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7ed126ba8..8d802aaa4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,7 +21,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v2 - name: Install PHP with latest composer uses: shivammathur/setup-php@v2 @@ -88,7 +88,7 @@ jobs: - name: Run unit tests with idna_convert 0.5.1 if: ${{ matrix.with == 'idna-convert-v051' }} - run: bin/phpunit --bootstrap=tests/bootstrap-with-idna-convert-051.php + run: composer test -- --bootstrap=tests/bootstrap-with-idna-convert-051.php - name: Run unit tests if: ${{ matrix.with != 'idna-convert-v051' }} @@ -99,7 +99,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v2 - name: Install PHP uses: shivammathur/setup-php@v2