Clone over HTTP please #36
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: tests | |
on: [ push, pull_request ] | |
jobs: | |
build: | |
name: Ubuntu PHP ${{ matrix.php-versions }}) ${{ matrix.type }} | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: true | |
matrix: | |
php-versions: [ "5.6", "7.1", "7.2", "7.4", "8.0", "8.1", "8.2" ] | |
type: [ cli, fpm ] | |
steps: | |
# 1- Checkout | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 10000 | |
# 2- Setup PHP | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-versions }} | |
tools: phpize | |
# 3- Setup SPX | |
- name: Setup PHP-SPX | |
run: sudo ./install.sh ${{ matrix.php-versions }} ${{ matrix.type }} |