@@ -55,13 +55,13 @@ jobs:
5555 run : composer install
5656 - name : Set up database schema
5757 run : mysql --host 127.0.0.1 --port ${{ job.services.mysql.ports['3306'] }} -u${{ env.DB_USERNAME }} -p${{ env.DB_PASSWORD }} ${{ env.DB_DATABASE }} < vendor/phplist/core/resources/Database/Schema.sql
58- - name : Validating composer.json
59- run : composer validate --no-check-all --no-check-lock --strict;
60- - name : Linting all php files
61- run : find src/ tests/ public/ -name ''*.php'' -print0 | xargs -0 -n 1 -P 4 php -l; php -l;
62- - name : Running unit tests
63- run : vendor/bin/phpunit tests/Unit/;
64- continue-on-error : ${{matrix.php-versions == '8.0' }} # [temp-php8]
58+ # - name: Validating composer.json
59+ # run: composer validate --no-check-all --no-check-lock --strict;
60+ # - name: Linting all php files
61+ # run: find src/ tests/ public/ -name ''*.php'' -print0 | xargs -0 -n 1 -P 4 php -l; php -l;
62+ # - name: Running unit tests
63+ # run: vendor/bin/phpunit tests/Unit/;
64+ # continue-on-error: ${{matrix.php-versions == '8.0' }} # [temp-php8]
6565 - name : Running the integration tests
6666 run : |
6767 export PHPLIST_DATABASE_NAME=${{ env.DB_DATABASE }}
7171 export PHPLIST_DATABASE_HOST=127.0.0.1
7272 vendor/bin/phpunit tests/Integration/
7373 continue-on-error : ${{matrix.php-versions == '8.0' }} # [temp-php8]
74- - name : Running static analysis
75- run : vendor/bin/phpstan analyse -l 5 src/ tests/;
76- - name : Running PHPMD
77- run : vendor/bin/phpmd src/ text vendor/phplist/core/config/PHPMD/rules.xml;
78- - name : Running PHP_CodeSniffer
79- run : vendor/bin/phpcs --standard=vendor/phplist/core/config/PhpCodeSniffer/ src/ tests/;
74+ # - name: Running static analysis
75+ # run: vendor/bin/phpstan analyse -l 5 src/ tests/;
76+ # - name: Running PHPMD
77+ # run: vendor/bin/phpmd src/ text vendor/phplist/core/config/PHPMD/rules.xml;
78+ # - name: Running PHP_CodeSniffer
79+ # run: vendor/bin/phpcs --standard=vendor/phplist/core/config/PhpCodeSniffer/ src/ tests/;
0 commit comments