-
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
14 changed files
with
1,279 additions
and
300 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,93 @@ | ||
name: CI [Backend] | ||
|
||
on: push | ||
|
||
jobs: | ||
check-codestyle: | ||
name: Check codestyle | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Setup PHP | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: 8.2 | ||
extensions: bcmath, dom, fileinfo, filter, gd, hash, intl, libxml, json, mbstring, mysqli, pcre, pdo_mysql, zip, zlib | ||
coverage: none | ||
|
||
env: | ||
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Install PHP dependencies | ||
run: composer install --no-interaction --no-progress | ||
|
||
- name: Check PHP codestyle | ||
run: tools/php-cs-fixer/vendor/bin/php-cs-fixer fix --dry-run -vvv --ansi | ||
|
||
- name: Run static analysis | ||
run: tools/phpstan/vendor/bin/phpstan analyze src/ --level max --memory-limit=-1 --ansi | ||
|
||
unit-tests: | ||
name: Unit tests | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Setup PHP | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: 8.2 | ||
extensions: bcmath, dom, fileinfo, filter, gd, hash, intl, libxml, json, mbstring, mysqli, pcre, pdo_mysql, zip, zlib | ||
coverage: none | ||
|
||
env: | ||
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Install the dependencies | ||
run: composer install --no-interaction --no-progress | ||
|
||
- name: Run unit tests | ||
run: tools/phpunit/vendor/bin/phpunit --colors=always | ||
|
||
check-composer-requirements: | ||
name: Check Composer requirements | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Setup PHP | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: 8.2 | ||
extensions: bcmath, dom, fileinfo, filter, gd, hash, intl, json, mbstring, mysqli, pcre, pdo_mysql, zip, zlib | ||
coverage: none | ||
|
||
env: | ||
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Install the dependencies | ||
run: composer install --no-interaction --no-progress | ||
|
||
- name: Check the dependencies | ||
run: tools/require-checker/vendor/bin/composer-require-checker check --config-file=tools/require-checker/config.json composer.json --ansi | ||
|
||
security-check: | ||
name: PHP Security Check | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Setup cache | ||
uses: actions/cache@v2 | ||
id: cache-db | ||
with: | ||
path: ~/.symfony/cache | ||
key: db | ||
|
||
- name: Run security check | ||
uses: symfonycorp/security-checker-action@v3 |
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.