Skip to content

Commit

Permalink
Fix workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
shivammathur committed Mar 8, 2020
1 parent 0c5e608 commit fa13da0
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit fa13da0

Please sign in to comment.