mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-01-03 04:22:04 +08:00
30eaaaa5f9
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
18 lines
349 B
YAML
18 lines
349 B
YAML
name: Psalm Analysis
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
|
|
jobs:
|
|
psalm:
|
|
name: Psalm
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v3
|
|
- name: Psalm
|
|
uses: docker://ghcr.io/nextcloud/all-in-one-psalm
|
|
with:
|
|
composer_ignore_platform_reqs: false
|
|
relative_dir: php
|