diff options
author | Carl Schwan <carl@carlschwan.eu> | 2022-12-07 11:14:46 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-07 11:14:46 +0100 |
commit | 33c2c3d0305014ae8aa1e2ebc31234b520a4d2d1 (patch) | |
tree | 1407b87d201f423fa42f4158e3c40c4e8b39f8ff /.github/workflows | |
parent | 741f32ed5d15382b4530147203bcaefbd1c83790 (diff) | |
parent | 35d67bdcf05388e25668de2c4c9b20acac6dda9e (diff) | |
download | nextcloud-server-33c2c3d0305014ae8aa1e2ebc31234b520a4d2d1.tar.gz nextcloud-server-33c2c3d0305014ae8aa1e2ebc31234b520a4d2d1.zip |
Merge pull request #35635 from nextcloud/ci/update-psalm-baseline/stable25
Update update-psalm-baseline workflow for NC25
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/update-psalm-baseline.yml | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/.github/workflows/update-psalm-baseline.yml b/.github/workflows/update-psalm-baseline.yml index 5e699f623af..42f2d7450e7 100644 --- a/.github/workflows/update-psalm-baseline.yml +++ b/.github/workflows/update-psalm-baseline.yml @@ -12,12 +12,12 @@ jobs: strategy: fail-fast: false matrix: - branches: ["master", "stable24", "stable23", "stable22"] + branches: ["master", "stable25", "stable24", "stable23"] name: update-psalm-baseline-${{ matrix.branches }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: ref: ${{ matrix.branches }} submodules: true @@ -36,6 +36,10 @@ jobs: run: composer run psalm -- --monochrome --no-progress --output-format=text --update-baseline continue-on-error: true + - name: Psalm OCP + run: composer run psalm -- -c psalm-ocp.xml --monochrome --no-progress --output-format=github --update-baseline + continue-on-error: true + - name: Reset composer run: | git clean -f lib/composer |