Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVincent Petry <vincent@nextcloud.com>2021-10-07 12:07:26 +0300
committerGitHub <noreply@github.com>2021-10-07 12:07:26 +0300
commitc64e905eab1e13c37e18dac2cf33c846f2eb45cb (patch)
tree0e52eb697a5dbef995e445c90f03afdb1f646a4e
parent339c6edd38830b42bb3b13c4f5eca8b27a00eec9 (diff)
parent6cfc7f5dd3d2fc2370a7ba5fbe998b1822471170 (diff)
Merge pull request #29110 from nextcloud/debt/noid/reset-composer-for-psalm-baseline-update
Reset composer for psalm baseline update
-rw-r--r--.github/workflows/update-psalm-baseline.yml6
1 files changed, 5 insertions, 1 deletions
diff --git a/.github/workflows/update-psalm-baseline.yml b/.github/workflows/update-psalm-baseline.yml
index 759a74a12d0..b74e9304b77 100644
--- a/.github/workflows/update-psalm-baseline.yml
+++ b/.github/workflows/update-psalm-baseline.yml
@@ -22,9 +22,13 @@ jobs:
extensions: ctype,curl,dom,fileinfo,gd,iconv,intl,json,mbstring,openssl,pdo_sqlite,posix,sqlite,xml,zip
coverage: none
- name: Composer install
- run: composer i
+ run: composer install
- name: Psalm
run: composer run psalm -- --monochrome --no-progress --output-format=text --update-baseline
+ - name: Reset composer
+ run: |
+ git clean -f lib/composer
+ git checkout composer.json composer.lock lib/composer
- name: Create Pull Request
uses: peter-evans/create-pull-request@v3
with: