chore(release): Bump version to 27.0.7 #287
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Static analysis | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
- main | |
- stable* | |
jobs: | |
static-psalm-analysis: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
ocp-version: [ 'dev-stable27', 'dev-stable25', 'dev-stable26' ] | |
name: Nextcloud ${{ matrix.ocp-version }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up php | |
uses: shivammathur/[email protected] | |
with: | |
php-version: 8.0 | |
tools: composer | |
coverage: none | |
- name: Install dependencies | |
run: composer i | |
- name: Install dependencies | |
run: composer require --dev nextcloud/ocp:${{ matrix.ocp-version }} --ignore-platform-reqs -W | |
- name: Run coding standards check | |
run: composer run psalm |