|
| 1 | +name: "build" |
| 2 | +on: |
| 3 | + push: |
| 4 | + branches: |
| 5 | + - "master" |
| 6 | + pull_request: ~ |
| 7 | + workflow_dispatch: ~ |
| 8 | + |
| 9 | +jobs: |
| 10 | + coding-standards: |
| 11 | + name: "Coding Standards" |
| 12 | + |
| 13 | + runs-on: "ubuntu-latest" |
| 14 | + |
| 15 | + strategy: |
| 16 | + matrix: |
| 17 | + php-version: |
| 18 | + - "8.1" |
| 19 | + |
| 20 | + dependencies: |
| 21 | + - "highest" |
| 22 | + |
| 23 | + steps: |
| 24 | + - name: "Checkout" |
| 25 | + uses: "actions/checkout@v4" |
| 26 | + |
| 27 | + - name: "Setup PHP, with composer and extensions" |
| 28 | + uses: "shivammathur/setup-php@v2" |
| 29 | + with: |
| 30 | + php-version: "${{ matrix.php-version }}" |
| 31 | + extensions: "${{ env.PHP_EXTENSIONS }}" |
| 32 | + coverage: "none" |
| 33 | + |
| 34 | + - name: "Install composer dependencies" |
| 35 | + uses: "ramsey/composer-install@v2" |
| 36 | + with: |
| 37 | + dependency-versions: "${{ matrix.dependencies }}" |
| 38 | + |
| 39 | + - name: "Validate composer" |
| 40 | + run: "composer validate --strict" |
| 41 | + |
| 42 | + - name: "Check composer normalized" |
| 43 | + run: "composer normalize --dry-run" |
| 44 | + |
| 45 | + - name: "Check style" |
| 46 | + run: "composer check-style" |
| 47 | + |
| 48 | + - name: "Check code style according to PHP version" |
| 49 | + run: "vendor/bin/rector --dry-run" |
| 50 | + |
| 51 | + dependency-analysis: |
| 52 | + name: "Dependency Analysis" |
| 53 | + |
| 54 | + runs-on: "ubuntu-latest" |
| 55 | + |
| 56 | + strategy: |
| 57 | + matrix: |
| 58 | + php-version: |
| 59 | + - "8.1" |
| 60 | + |
| 61 | + dependencies: |
| 62 | + - "highest" |
| 63 | + |
| 64 | + steps: |
| 65 | + - name: "Checkout" |
| 66 | + uses: "actions/checkout@v4" |
| 67 | + |
| 68 | + - name: "Setup PHP, with composer and extensions" |
| 69 | + uses: "shivammathur/setup-php@v2" |
| 70 | + with: |
| 71 | + coverage: "none" |
| 72 | + extensions: "${{ env.PHP_EXTENSIONS }}" |
| 73 | + php-version: "${{ matrix.php-version }}" |
| 74 | + tools: "composer-require-checker, composer-unused" |
| 75 | + |
| 76 | + - name: "Install composer dependencies" |
| 77 | + uses: "ramsey/composer-install@v2" |
| 78 | + with: |
| 79 | + dependency-versions: "${{ matrix.dependencies }}" |
| 80 | + |
| 81 | + - name: "Run maglnet/composer-require-checker" |
| 82 | + run: "composer-require-checker check" |
| 83 | + |
| 84 | + - name: "Run composer-unused/composer-unused" |
| 85 | + run: "composer-unused" |
| 86 | + |
| 87 | + static-code-analysis: |
| 88 | + name: "Static Code Analysis" |
| 89 | + |
| 90 | + runs-on: "ubuntu-latest" |
| 91 | + |
| 92 | + strategy: |
| 93 | + matrix: |
| 94 | + php-version: |
| 95 | + - "8.1" |
| 96 | + |
| 97 | + dependencies: |
| 98 | + - "highest" |
| 99 | + |
| 100 | + steps: |
| 101 | + - name: "Checkout" |
| 102 | + uses: "actions/checkout@v4" |
| 103 | + |
| 104 | + - name: "Setup PHP, with composer and extensions" |
| 105 | + uses: "shivammathur/setup-php@v2" |
| 106 | + with: |
| 107 | + php-version: "${{ matrix.php-version }}" |
| 108 | + extensions: "${{ env.PHP_EXTENSIONS }}" |
| 109 | + coverage: "none" |
| 110 | + |
| 111 | + - name: "Install composer dependencies" |
| 112 | + uses: "ramsey/composer-install@v2" |
| 113 | + with: |
| 114 | + dependency-versions: "${{ matrix.dependencies }}" |
| 115 | + |
| 116 | + - name: "Static analysis" |
| 117 | + run: "composer analyse" |
| 118 | + |
| 119 | + unit-tests: |
| 120 | + name: "Unit tests" |
| 121 | + |
| 122 | + runs-on: "ubuntu-latest" |
| 123 | + |
| 124 | + strategy: |
| 125 | + matrix: |
| 126 | + php-version: |
| 127 | + - "8.1" |
| 128 | + |
| 129 | + dependencies: |
| 130 | + - "highest" |
| 131 | + |
| 132 | + steps: |
| 133 | + - name: "Checkout" |
| 134 | + uses: "actions/checkout@v4" |
| 135 | + |
| 136 | + - name: "Setup PHP, with composer and extensions" |
| 137 | + uses: "shivammathur/setup-php@v2" |
| 138 | + with: |
| 139 | + php-version: "${{ matrix.php-version }}" |
| 140 | + extensions: "${{ env.PHP_EXTENSIONS }}" |
| 141 | + coverage: "pcov" |
| 142 | + |
| 143 | + - name: "Set up problem matchers for phpunit/phpunit" |
| 144 | + run: "echo \"::add-matcher::${{ runner.tool_cache }}/phpunit.json\"" |
| 145 | + |
| 146 | + - name: "Install composer dependencies" |
| 147 | + uses: "ramsey/composer-install@v2" |
| 148 | + with: |
| 149 | + dependency-versions: "${{ matrix.dependencies }}" |
| 150 | + |
| 151 | + - name: "Run phpunit (with code coverage)" |
| 152 | + run: "vendor/bin/phpunit --coverage-clover=.build/logs/clover.xml" |
| 153 | + |
| 154 | + - name: "Send code coverage report to Codecov.io" |
| 155 | + uses: "codecov/codecov-action@v3" |
| 156 | + with: |
| 157 | + directory: ".build/logs" |
| 158 | + |
| 159 | + mutation-tests: |
| 160 | + name: "Mutation tests" |
| 161 | + |
| 162 | + runs-on: "ubuntu-latest" |
| 163 | + |
| 164 | + strategy: |
| 165 | + matrix: |
| 166 | + php-version: |
| 167 | + - "8.1" |
| 168 | + |
| 169 | + dependencies: |
| 170 | + - "highest" |
| 171 | + |
| 172 | + steps: |
| 173 | + - name: "Checkout" |
| 174 | + uses: "actions/checkout@v4" |
| 175 | + |
| 176 | + - name: "Setup PHP, with composer and extensions" |
| 177 | + uses: "shivammathur/setup-php@v2" |
| 178 | + with: |
| 179 | + coverage: "pcov" |
| 180 | + extensions: "${{ env.PHP_EXTENSIONS }}" |
| 181 | + php-version: "${{ matrix.php-version }}" |
| 182 | + |
| 183 | + - name: "Install composer dependencies" |
| 184 | + uses: "ramsey/composer-install@v2" |
| 185 | + with: |
| 186 | + dependency-versions: "${{ matrix.dependencies }}" |
| 187 | + |
| 188 | + - name: "Run infection" |
| 189 | + run: "vendor/bin/infection" |
| 190 | + env: |
| 191 | + STRYKER_DASHBOARD_API_KEY: "${{ secrets.STRYKER_DASHBOARD_API_KEY }}" |
0 commit comments