diff options
author | Paramtamtam <[email protected]> | 2019-12-25 20:55:19 +0500 |
---|---|---|
committer | Paramtamtam <[email protected]> | 2019-12-25 20:55:19 +0500 |
commit | 0c68e87e9a38fe36a7007560cd148594112c4072 (patch) | |
tree | f94b9e8448723d70cd09fb5b1c28aeebc16117b5 /.github | |
parent | ccac17c7d64a1c3e247b126ee9f249ff0d6e8d52 (diff) |
Workflow updated
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci-build.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index df6ecc7b..4e0a7034 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -45,6 +45,10 @@ jobs: - name: Syntax check only (lint) run: find ./src/ -name "*.php" -print0 | xargs -0 -n1 -P8 php -l + - name: Get Composer Cache Directory # Docs: <https://github.com/actions/cache/blob/master/examples.md#php---composer> + id: composer-cache + run: echo "::set-output name=dir::$(composer config cache-files-dir)" + - name: Cache dependencies # Docs: <https://github.com/actions/cache/blob/master/examples.md#php---composer> uses: actions/cache@v1 with: |