|  | 
|  | 1 | +# https://help.github.com/en/categories/automating-your-workflow-with-github-actions | 
|  | 2 | + | 
|  | 3 | +name: "Build" | 
|  | 4 | + | 
|  | 5 | +on: | 
|  | 6 | +  pull_request: | 
|  | 7 | +  push: | 
|  | 8 | +    branches: | 
|  | 9 | +      - "master" | 
|  | 10 | + | 
|  | 11 | +jobs: | 
|  | 12 | +  lint: | 
|  | 13 | +    name: "Lint" | 
|  | 14 | +    runs-on: "ubuntu-latest" | 
|  | 15 | + | 
|  | 16 | +    strategy: | 
|  | 17 | +      matrix: | 
|  | 18 | +        php-version: | 
|  | 19 | +          - "7.1" | 
|  | 20 | +          - "7.2" | 
|  | 21 | +          - "7.3" | 
|  | 22 | +          - "7.4" | 
|  | 23 | +          - "8.0" | 
|  | 24 | + | 
|  | 25 | +    steps: | 
|  | 26 | +      - name: "Checkout" | 
|  | 27 | +        uses: "actions/checkout@v2" | 
|  | 28 | + | 
|  | 29 | +      - name: "Install PHP" | 
|  | 30 | +        uses: "shivammathur/setup-php@v2" | 
|  | 31 | +        with: | 
|  | 32 | +          coverage: "none" | 
|  | 33 | +          php-version: "${{ matrix.php-version }}" | 
|  | 34 | + | 
|  | 35 | +      - name: "Validate Composer" | 
|  | 36 | +        run: "composer validate" | 
|  | 37 | + | 
|  | 38 | +      - name: "Install dependencies" | 
|  | 39 | +        run: "composer install --no-interaction --no-progress --no-suggest" | 
|  | 40 | + | 
|  | 41 | +      - name: "Update PHPUnit" | 
|  | 42 | +        if: matrix.php-version == '7.4' || matrix.php-version == '8.0' | 
|  | 43 | +        run: "composer require --dev phpunit/phpunit:'^9.5' --update-with-dependencies" | 
|  | 44 | + | 
|  | 45 | + | 
|  | 46 | +      - name: "Lint" | 
|  | 47 | +        run: "vendor/bin/phing lint" | 
|  | 48 | + | 
|  | 49 | +  coding-standards: | 
|  | 50 | +    name: "Coding Standard" | 
|  | 51 | + | 
|  | 52 | +    runs-on: "ubuntu-latest" | 
|  | 53 | + | 
|  | 54 | +    steps: | 
|  | 55 | +      - name: "Checkout" | 
|  | 56 | +        uses: "actions/checkout@v2" | 
|  | 57 | + | 
|  | 58 | +      - name: "Install PHP" | 
|  | 59 | +        uses: "shivammathur/setup-php@v2" | 
|  | 60 | +        with: | 
|  | 61 | +          coverage: "none" | 
|  | 62 | +          php-version: "7.4" | 
|  | 63 | + | 
|  | 64 | +      - name: "Validate Composer" | 
|  | 65 | +        run: "composer validate" | 
|  | 66 | + | 
|  | 67 | +      - name: "Install dependencies" | 
|  | 68 | +        run: "composer install --no-interaction --no-progress --no-suggest" | 
|  | 69 | + | 
|  | 70 | +      - name: "Lint" | 
|  | 71 | +        run: "vendor/bin/phing lint" | 
|  | 72 | + | 
|  | 73 | +      - name: "Coding Standard" | 
|  | 74 | +        run: "vendor/bin/phing cs" | 
|  | 75 | + | 
|  | 76 | +  tests: | 
|  | 77 | +    name: "Tests" | 
|  | 78 | +    runs-on: "ubuntu-latest" | 
|  | 79 | + | 
|  | 80 | +    strategy: | 
|  | 81 | +      fail-fast: false | 
|  | 82 | +      matrix: | 
|  | 83 | +        php-version: | 
|  | 84 | +          - "7.1" | 
|  | 85 | +          - "7.2" | 
|  | 86 | +          - "7.3" | 
|  | 87 | +          - "7.4" | 
|  | 88 | +          - "8.0" | 
|  | 89 | +        dependencies: | 
|  | 90 | +          - "lowest" | 
|  | 91 | +          - "highest" | 
|  | 92 | + | 
|  | 93 | +    steps: | 
|  | 94 | +      - name: "Checkout" | 
|  | 95 | +        uses: "actions/checkout@v2" | 
|  | 96 | + | 
|  | 97 | +      - name: "Install PHP" | 
|  | 98 | +        uses: "shivammathur/setup-php@v2" | 
|  | 99 | +        with: | 
|  | 100 | +          coverage: "none" | 
|  | 101 | +          php-version: "${{ matrix.php-version }}" | 
|  | 102 | + | 
|  | 103 | +      - name: "Install lowest dependencies" | 
|  | 104 | +        if: ${{ matrix.dependencies == 'lowest' }} | 
|  | 105 | +        run: "composer update --prefer-lowest --no-interaction --no-progress --no-suggest" | 
|  | 106 | + | 
|  | 107 | +      - name: "Install highest dependencies" | 
|  | 108 | +        if: ${{ matrix.dependencies == 'highest' }} | 
|  | 109 | +        run: "composer update --no-interaction --no-progress --no-suggest" | 
|  | 110 | + | 
|  | 111 | +      - name: "Update PHPUnit" | 
|  | 112 | +        if: matrix.php-version == '7.4' || matrix.php-version == '8.0' | 
|  | 113 | +        run: "composer require --dev phpunit/phpunit:'^9.5' --update-with-dependencies" | 
|  | 114 | + | 
|  | 115 | +      - name: "Tests" | 
|  | 116 | +        run: "vendor/bin/phing tests" | 
|  | 117 | + | 
|  | 118 | +  static-analysis: | 
|  | 119 | +    name: "PHPStan" | 
|  | 120 | +    runs-on: "ubuntu-latest" | 
|  | 121 | + | 
|  | 122 | +    strategy: | 
|  | 123 | +      fail-fast: false | 
|  | 124 | +      matrix: | 
|  | 125 | +        php-version: | 
|  | 126 | +          - "7.1" | 
|  | 127 | +          - "7.2" | 
|  | 128 | +          - "7.3" | 
|  | 129 | +          - "7.4" | 
|  | 130 | +          - "8.0" | 
|  | 131 | +        dependencies: | 
|  | 132 | +          - "lowest" | 
|  | 133 | +          - "highest" | 
|  | 134 | + | 
|  | 135 | +    steps: | 
|  | 136 | +      - name: "Checkout" | 
|  | 137 | +        uses: "actions/checkout@v2" | 
|  | 138 | + | 
|  | 139 | +      - name: "Install PHP" | 
|  | 140 | +        uses: "shivammathur/setup-php@v2" | 
|  | 141 | +        with: | 
|  | 142 | +          coverage: "none" | 
|  | 143 | +          php-version: "${{ matrix.php-version }}" | 
|  | 144 | +          extensions: mbstring | 
|  | 145 | +          tools: composer:v2 | 
|  | 146 | + | 
|  | 147 | +      - name: "Install lowest dependencies" | 
|  | 148 | +        if: ${{ matrix.dependencies == 'lowest' }} | 
|  | 149 | +        run: "composer update --prefer-lowest --no-interaction --no-progress --no-suggest" | 
|  | 150 | + | 
|  | 151 | +      - name: "Install highest dependencies" | 
|  | 152 | +        if: ${{ matrix.dependencies == 'highest' }} | 
|  | 153 | +        run: "composer update --no-interaction --no-progress --no-suggest" | 
|  | 154 | + | 
|  | 155 | +      - name: "Update PHPUnit" | 
|  | 156 | +        if: matrix.php-version == '7.4' || matrix.php-version == '8.0' | 
|  | 157 | +        run: "composer require --dev phpunit/phpunit:'^9.5' --update-with-dependencies" | 
|  | 158 | + | 
|  | 159 | +      - name: "PHPStan" | 
|  | 160 | +        run: "vendor/bin/phing phpstan" | 
0 commit comments