Skip to content

Commit bcf748a

Browse files
author
DKravtsov
committed
Updated composer dependencies, updated docs, added Qodana code quality tool integration.
1 parent f2137a5 commit bcf748a

27 files changed

+1268
-1342
lines changed

.circleci/config.yml

+5
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,11 @@ jobs:
2828
make wait-for-elastic
2929
make elastic-create-or-update-template
3030
31+
- run:
32+
name: Show framework version and additional info, php & composer version
33+
command: |
34+
make info
35+
3136
- run:
3237
name: Run unit/functional tests
3338
command: |

.env

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ XDEBUG_CONFIG=main
2727
MYSQL_VERSION=8.1
2828
# MySQL INNODB_USE_NATIVE_AIO possible values: 1|0. Set to 0 when AIO interface is not supported on OSX. https://dev.mysql.com/doc/refman/8.0/en/innodb-parameters.html#sysvar_innodb_use_native_aio
2929
INNODB_USE_NATIVE_AIO=1
30-
# Sometimes AWS MySQL RDS has SQL_MODE="NO_ENGINE_SUBSTITUTION" (https://github.com/awsdocs/amazon-rds-user-guide/issues/160 ) but MySQL default described here - https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_sql_mode
30+
# Sometimes AWS MySQL RDS has SQL_MODE="NO_ENGINE_SUBSTITUTION" (https://github.com/awsdocs/amazon-rds-user-guide/issues/160) but MySQL default described here - https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_sql_mode
3131
SQL_MODE="ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION"
3232
###< docker configuration that can be overridden in .env.local ###
3333

.github/workflows/ci.yml

+19-3
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,8 @@ on:
1313
types: [published]
1414

1515
jobs:
16-
1716
build:
18-
1917
runs-on: ubuntu-latest
20-
2118
steps:
2219
- uses: actions/checkout@v1
2320
- name: Set Elastic data folder rights
@@ -44,6 +41,8 @@ jobs:
4441
run: make wait-for-elastic
4542
- name: Create or update Elastic index template
4643
run: make elastic-create-or-update-template
44+
- name: Show framework version and additional info, php & composer version
45+
run: make info
4746
- name: Run test suite
4847
run: make phpunit
4948
- name: Run coding standard
@@ -60,3 +59,20 @@ jobs:
6059
run: make phpmd
6160
- name: Stop the docker images
6261
run: make stop-test
62+
63+
qodana:
64+
runs-on: ubuntu-latest
65+
needs: build
66+
permissions:
67+
contents: write
68+
pull-requests: write
69+
checks: write
70+
steps:
71+
- uses: actions/checkout@v3
72+
with:
73+
ref: ${{ github.event.pull_request.head.sha }} # to check out the actual pull request commit, not the merge commit
74+
fetch-depth: 0 # a full history is required for pull request analysis
75+
- name: 'Qodana Scan'
76+
uses: JetBrains/qodana-action@v2023.2
77+
env:
78+
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }}

Makefile

+32-31
Large diffs are not rendered by default.

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"Elasticsearch"
1515
],
1616
"homepage": "https://github.com/systemsdk/docker-symfony-api",
17-
"version": "v1.6.0",
17+
"version": "v1.6.1",
1818
"license": "MIT",
1919
"authors": [
2020
{
@@ -100,7 +100,7 @@
100100
"roave/security-advisories": "dev-latest",
101101
"symfony/browser-kit": "6.3.*",
102102
"symfony/debug-bundle": "6.3.*",
103-
"symfony/maker-bundle": "^1.50",
103+
"symfony/maker-bundle": "^1.51",
104104
"symfony/requirements-checker": "^2.0",
105105
"symfony/stopwatch": "6.3.*",
106106
"symfony/var-dumper": "6.3.*",

0 commit comments

Comments
 (0)