diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ecc8c6f..0632af5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,14 +9,16 @@ jobs: strategy: fail-fast: false matrix: - php-versions: ['53', '54', '55'] + php-versions: ['5.3', '5.4', '5.5'] name: PHP ${{ matrix.php-versions }} steps: - name: Checkout uses: actions/checkout@v2 - name: Setup PHP - run: bash install.sh ${{ matrix.php-versions }} + run: | + version=${{ matrix.php-versions }} + bash install.sh ${version/./} - name: Testing PHP version run: | php -v