diff options
author | Paramtamtam <[email protected]> | 2019-12-25 20:46:33 +0500 |
---|---|---|
committer | Paramtamtam <[email protected]> | 2019-12-25 20:46:33 +0500 |
commit | aa1b942fb5c57ad30d6641ec5850351c320be64a (patch) | |
tree | de5398d14e6bda049c692d21f8615c990d44dc0b /.github/workflows | |
parent | 56742c073dcc978613afe9fb3a9e096c5d4e653f (diff) |
Workflow updated
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/ci-build.yml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index 0b64deda..0c964501 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -38,8 +38,9 @@ jobs: run: php -v && composer -V && go version - name: Debug if needed - if: ${{ secrets.DEBUG }} == 'true' || ${{ env.DEVUG }} == 'true' - run: env && go env + env: + DEBUG: ${{ secrets.DEBUG }} + run: if [[ "$DEBUG" == "true" ]]; then env && go env; fi - name: Syntax check only (lint) run: find ./src/ -name "*.php" -print0 | xargs -0 -n1 -P8 php -l |