|
8 | 8 | branches: |
9 | 9 | - '*' |
10 | 10 |
|
| 11 | +permissions: |
| 12 | + contents: read |
| 13 | + |
11 | 14 | jobs: |
12 | 15 | testsuite: |
13 | | - runs-on: ubuntu-18.04 |
14 | | - strategy: |
15 | | - fail-fast: false |
16 | | - matrix: |
17 | | - php-version: ['7.4', '8.0', '8.1'] |
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'; 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 |
| 16 | + uses: ADmad/.github/.github/workflows/testsuite-with-db.yml@master |
| 17 | + secrets: inherit |
73 | 18 |
|
74 | 19 | cs-stan: |
75 | | - name: Coding Standard & Static Analysis |
76 | | - runs-on: ubuntu-18.04 |
77 | | - |
78 | | - steps: |
79 | | - - uses: actions/checkout@v2 |
80 | | - |
81 | | - - name: Setup PHP |
82 | | - uses: shivammathur/setup-php@v2 |
83 | | - with: |
84 | | - php-version: '7.4' |
85 | | - extensions: mbstring, intl |
86 | | - coverage: none |
87 | | - tools: vimeo/psalm:4.21, phpstan:1.4 |
88 | | - |
89 | | - - name: Composer Install |
90 | | - run: composer require cakephp/cakephp-codesniffer:^4.2 |
91 | | - |
92 | | - - name: Run phpcs |
93 | | - run: vendor/bin/phpcs --standard=CakePHP src/ tests/ |
94 | | - |
95 | | - - name: Run psalm |
96 | | - if: success() || failure() |
97 | | - run: psalm --output-format=github |
98 | | - |
99 | | - - name: Run phpstan |
100 | | - if: success() || failure() |
101 | | - run: phpstan analyse |
| 20 | + uses: ADmad/.github/.github/workflows/cs-stan.yml@master |
| 21 | + secrets: inherit |
0 commit comments