allow to specify AIO_COMMUNITY_CONTAINERS #355
Workflow file for this run
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
# This workflow is provided via the organization template repository | |
# | |
# https://github.com/nextcloud/.github | |
# https://docs.github.com/en/actions/learn-github-actions/sharing-workflows-with-your-organization | |
name: Static analysis | |
on: | |
pull_request: | |
paths: | |
- 'php/**' | |
push: | |
branches: | |
- main | |
paths: | |
- 'php/**' | |
concurrency: | |
group: psalm-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
static-analysis: | |
runs-on: ubuntu-latest | |
name: Nextcloud | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 # v3.5.2 | |
- name: Set up php | |
uses: shivammathur/setup-php@c5fc0d8281aba02c7fda07d3a70cc5371548067d # v2 | |
with: | |
php-version: 8.2 | |
extensions: apcu | |
coverage: none | |
ini-file: development | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Install dependencies and run psalm | |
run: | | |
set -x | |
cd php | |
composer global require vimeo/psalm --prefer-dist --no-progress --dev | |
composer install | |
composer run psalm |