-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
155 additions
and
7,450 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
end_of_line = lf | ||
indent_size = 4 | ||
insert_final_newline = true | ||
tab_width = 4 | ||
trim_trailing_whitespace = true | ||
|
||
[*.md] | ||
trim_trailing_whitespace = false | ||
|
||
[*.yml] | ||
indent_size = 2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,102 @@ | ||
name: CI | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
static: | ||
name: Static Analysis | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Psalm | ||
uses: docker://vimeo/psalm-github-actions | ||
with: | ||
security_analysis: true | ||
report_file: results.sarif | ||
composer_ignore_platform_reqs: true | ||
|
||
- name: Upload Security Analysis results to GitHub | ||
uses: github/codeql-action/upload-sarif@v2 | ||
with: | ||
sarif_file: results.sarif | ||
|
||
# we may use whatever way to install phpcs, just specify the path on the next step | ||
# however, curl seems to be the fastest | ||
- name: Install PHP_CodeSniffer | ||
run: | | ||
curl -OL https://squizlabs.github.io/PHP_CodeSniffer/phpcs.phar | ||
php phpcs.phar --version | ||
- uses: tinovyatkin/action-php-codesniffer@v1 | ||
with: | ||
files: "**.php" # you may customize glob as needed | ||
phpcs_path: php phpcs.phar | ||
standard: phpcs.xml | ||
|
||
unittest: | ||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
matrix: | ||
php: | ||
- version: 7.4 | ||
coverage: false | ||
composer-args: '' | ||
- version: 8.0 | ||
coverage: false | ||
composer-args: '' | ||
- version: 8.1 | ||
coverage: false | ||
composer-args: '' | ||
- version: 8.2 | ||
coverage: false | ||
composer-args: '' | ||
- version: 8.3 | ||
coverage: true | ||
composer-args: '' | ||
- version: 8.4 | ||
coverage: false | ||
composer-args: '--ignore-platform-req=php' | ||
prefer-lowest: ['', '--prefer-lowest'] | ||
|
||
name: Unit Tests - PHP ${{ matrix.php.version }} ${{ matrix.prefer-lowest }} | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Install PHP | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: ${{ matrix.php.version }} | ||
|
||
- name: Validate composer.json and composer.lock | ||
run: composer validate --strict | ||
|
||
- name: Cache Composer packages | ||
id: composer-cache | ||
uses: actions/cache@v4 | ||
with: | ||
path: vendor | ||
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }} | ||
restore-keys: | | ||
${{ runner.os }}-php- | ||
- name: Install dependencies | ||
run: composer update --prefer-dist --no-progress --with-all-dependencies ${{ matrix.prefer-lowest }} ${{ matrix.php.composer-args }} | ||
|
||
- name: Run test suite | ||
if: ${{ ! matrix.php.coverage }} | ||
run: ./vendor/bin/phpunit | ||
|
||
- name: Run test suite with code coverage | ||
if: ${{ matrix.php.coverage }} | ||
run: ./vendor/bin/phpunit --coverage-clover=build/logs/clover.xml | ||
env: | ||
XDEBUG_MODE: coverage | ||
|
||
- name: Upload code coverage to Scrutinizer | ||
run: | | ||
wget https://scrutinizer-ci.com/ocular.phar | ||
php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml || true |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,3 +5,4 @@ | |
/nbproject/private/ | ||
phpunit.xml | ||
.phpcs-cache | ||
composer.lock |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,34 @@ | ||
imports: | ||
- php | ||
- php | ||
|
||
build: | ||
environment: | ||
php: 8.0.0 | ||
nodes: | ||
analysis: | ||
project_setup: | ||
override: | ||
- 'true' | ||
tests: | ||
override: | ||
- php-scrutinizer-run | ||
- | ||
command: phpcs-run | ||
environment: | ||
php: 8.0.0 | ||
nodes: | ||
analysis: | ||
project_setup: | ||
override: | ||
- "true" | ||
tests: | ||
override: | ||
- php-scrutinizer-run | ||
- command: phpcs-run | ||
|
||
filter: | ||
excluded_paths: | ||
- 'tests/*' | ||
- 'bin/*' | ||
excluded_paths: | ||
- "tests/*" | ||
- "bin/*" | ||
|
||
checks: | ||
php: true | ||
php: true | ||
|
||
coding_style: | ||
php: | ||
spaces: | ||
around_operators: | ||
concatenation: true | ||
php: | ||
spaces: | ||
around_operators: | ||
concatenation: true | ||
|
||
tools: | ||
php_cs_fixer: false | ||
external_code_coverage: | ||
timeout: 300 | ||
php_cs_fixer: false | ||
external_code_coverage: | ||
timeout: 300 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.