|
| 1 | +name: CI |
| 2 | + |
| 3 | +on: |
| 4 | + push: |
| 5 | + branches: |
| 6 | + - master |
| 7 | + pull_request: |
| 8 | + branches: |
| 9 | + - '*' |
| 10 | + |
| 11 | +jobs: |
| 12 | + testsuite: |
| 13 | + runs-on: ubuntu-18.04 |
| 14 | + strategy: |
| 15 | + fail-fast: false |
| 16 | + matrix: |
| 17 | + php-version: ['7.4', '8.0'] |
| 18 | + db-type: [mysql, pgsql] |
| 19 | + prefer-lowest: [''] |
| 20 | + include: |
| 21 | + - php-version: '7.2' |
| 22 | + db-type: 'sqlite' |
| 23 | + prefer-lowest: 'prefer-lowest' |
| 24 | + |
| 25 | + services: |
| 26 | + postgres: |
| 27 | + image: postgres |
| 28 | + ports: |
| 29 | + - 5432:5432 |
| 30 | + env: |
| 31 | + POSTGRES_PASSWORD: postgres |
| 32 | + |
| 33 | + steps: |
| 34 | + - uses: actions/checkout@v2 |
| 35 | + |
| 36 | + - name: Setup Service |
| 37 | + if: matrix.db-type == 'mysql' |
| 38 | + run: | |
| 39 | + sudo service mysql start |
| 40 | + mysql -h 127.0.0.1 -u root -proot -e 'CREATE DATABASE cakephp;' |
| 41 | +
|
| 42 | + - name: Setup PHP |
| 43 | + uses: shivammathur/setup-php@v2 |
| 44 | + with: |
| 45 | + php-version: ${{ matrix.php-version }} |
| 46 | + extensions: mbstring, intl, pdo_${{ matrix.db-type }} |
| 47 | + coverage: pcov |
| 48 | + |
| 49 | + - name: Composer install |
| 50 | + run: | |
| 51 | + composer --version |
| 52 | + if ${{ matrix.prefer-lowest == 'prefer-lowest' }}; then |
| 53 | + composer update --prefer-lowest --prefer-stable |
| 54 | + else |
| 55 | + composer install |
| 56 | + fi |
| 57 | +
|
| 58 | + - name: Run PHPUnit |
| 59 | + run: | |
| 60 | + if [[ ${{ matrix.db-type }} == 'sqlite' ]]; then export DB_URL='sqlite:///:memory:'; fi |
| 61 | + if [[ ${{ matrix.db-type }} == 'mysql' ]]; then export DB_URL='mysql://root:[email protected]/cakephp?init[]=SET sql_mode = "STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION"'; fi |
| 62 | + if [[ ${{ matrix.db-type }} == 'pgsql' ]]; then export DB_URL='postgres://postgres:[email protected]/postgres'; fi |
| 63 | +
|
| 64 | + if [[ ${{ matrix.php-version }} == '7.4' && ${{ matrix.db-type }} == 'mysql' ]]; then |
| 65 | + vendor/bin/phpunit --coverage-clover=coverage.xml |
| 66 | + else |
| 67 | + vendor/bin/phpunit |
| 68 | + fi |
| 69 | +
|
| 70 | + - name: Code Coverage Report |
| 71 | + if: success() && matrix.php-version == '7.4' && matrix.db-type == 'mysql' |
| 72 | + uses: codecov/codecov-action@v2 |
| 73 | + |
| 74 | + cs-stan: |
| 75 | + name: Coding Standard & Static Analysis |
| 76 | + runs-on: ubuntu-18.04 |
| 77 | + |
| 78 | + steps: |
| 79 | + - uses: actions/checkout@v1 |
| 80 | + with: |
| 81 | + fetch-depth: 1 |
| 82 | + |
| 83 | + - name: Setup PHP |
| 84 | + uses: shivammathur/setup-php@v2 |
| 85 | + with: |
| 86 | + php-version: '7.4' |
| 87 | + extensions: mbstring, intl |
| 88 | + coverage: none |
| 89 | + tools: psalm:4.4, phpstan:1.0 |
| 90 | + |
| 91 | + - name: Composer Install |
| 92 | + run: composer require cakephp/cakephp-codesniffer:^4.2 |
| 93 | + |
| 94 | + - name: Run phpcs |
| 95 | + run: vendor/bin/phpcs --standard=CakePHP src/ tests/ |
| 96 | + |
| 97 | + - name: Run psalm |
| 98 | + if: success() || failure() |
| 99 | + run: psalm --output-format=github |
| 100 | + |
| 101 | + - name: Run phpstan |
| 102 | + if: success() || failure() |
| 103 | + run: phpstan analyse src |
0 commit comments