Bumps [actions/checkout](https://github.com/actions/checkout) from 2.4.0 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.4.0...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>
32 lines
833 B
YAML
32 lines
833 B
YAML
name: Static analysis
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- master
|
|
- stable*
|
|
|
|
jobs:
|
|
static-psalm-analysis:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
ocp-version: [ 'dev-master' ]
|
|
name: Nextcloud ${{ matrix.ocp-version }}
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
- name: Set up php
|
|
uses: shivammathur/setup-php@2.17.1
|
|
with:
|
|
php-version: 7.4
|
|
tools: composer:v1
|
|
coverage: none
|
|
- name: Install dependencies
|
|
run: composer i
|
|
- name: Install dependencies
|
|
run: composer require --dev christophwurst/nextcloud:${{ matrix.ocp-version }}
|
|
- name: Run coding standards check
|
|
run: composer run psalm
|