diff options
-rwxr-xr-x | .github/workflows/ci-build.yml | 4 | ||||
-rwxr-xr-x | .rr.yaml | 4 | ||||
-rwxr-xr-x | bors.toml | 13 | ||||
-rw-r--r-- | phpstan.neon.dist | 5 |
4 files changed, 13 insertions, 13 deletions
diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index 85d73214..b8440443 100755 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -57,8 +57,8 @@ jobs: - name: Install Composer dependencies run: composer install --prefer-dist --no-interaction --no-suggest # --prefer-source - - name: Analyze PHP sources - run: composer analyze +# - name: Analyze PHP sources +# run: composer analyze - name: Install Go dependencies run: go mod download @@ -1,7 +1,7 @@ app: commmand: "php app.php" - user: user - group: group + user: "" + group: "" env: DEBUG: true APP_KEY: "..."
\ No newline at end of file @@ -1,14 +1,9 @@ status = [ -'Build (PHP 7.2, Go 1.15, OS ubuntu-latest)', -'Build (PHP 7.2, Go 1.14, OS ubuntu-latest)', -'Build (PHP 7.3, Go 1.15, OS ubuntu-latest)', -'Build (PHP 7.3, Go 1.14, OS ubuntu-latest)', -'Build (PHP 7.4, Go 1.15, OS ubuntu-latest)', -'Build (PHP 7.4, Go 1.14, OS ubuntu-latest)', -'runner / golangci-lint', -'Build docker image',] + 'Build (PHP 7.4, Go 1.15, OS ubuntu-latest)', + 'Build (PHP 7.4, Go 1.14, OS ubuntu-latest)', + 'runner / golangci-lint', ] required_approvals = 1 delete_merged_branches = true -timeout-sec = 1800
\ No newline at end of file +timeout-sec = 600
\ No newline at end of file diff --git a/phpstan.neon.dist b/phpstan.neon.dist new file mode 100644 index 00000000..50c2a587 --- /dev/null +++ b/phpstan.neon.dist @@ -0,0 +1,5 @@ +parameters: + level: 'max' + checkMissingIterableValueType: false + paths: + - src
\ No newline at end of file |