From 7af9e49ab503938621a2c26dccee44d5869794de Mon Sep 17 00:00:00 2001 From: Xinchen Hui Date: Fri, 28 Jun 2024 16:45:42 +0800 Subject: [PATCH] Fixed workflow --- .github/workflows/integrate.yml | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/.github/workflows/integrate.yml b/.github/workflows/integrate.yml index ab30e12..df9269b 100644 --- a/.github/workflows/integrate.yml +++ b/.github/workflows/integrate.yml @@ -18,24 +18,26 @@ jobs: ZTS: "yes" OS: "ubuntu-latest" env: - PHP: $ {{ matrix.PHP }} + PHP: ${{ matrix.PHP }} GITHUB: "yes" enable_debug: "yes" - enable_maintainer_zts: $ {{ matrix.ZTS }} enable_session: "yes" + enable_maintainer_zts: ${{ matrix.ZTS }} TEST_PHP_ARGS : "--show-diff" REPORT_EXIT_STATUS: "yes" NO_INTERACTION: "yes" steps: - - uses: actions/checkout@v2 + - name: Checkout + uses: actions/checkout@v2 with: submodules: true + - name: Setup + uses: shivammathur/setup-php@v2 + with: + php-version: ${{ matrix.PHP }} - name: Install run: | - sudo apt-get install -y \ - php-cli \ - php-pear \ - re2c + sudo apt-get install -y re2c - name: Prepare run: | phpize