summaryrefslogtreecommitdiffstats
path: root/.github/workflows/static-code-check.yml
blob: 9343ece2fedaa01dd2cbb4b6eab5470d59204939 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
name: Static analysis
on:
  pull_request
jobs:
  static-psalm-analysis:
    runs-on: ubuntu-latest
    continue-on-error: true
    strategy:
      matrix:
        ocp-version: [ 'dev-master', 'v20.0.5' ]
    name: "Psalm: Nextcloud ${{ matrix.ocp-version }}"
    steps:
      - name: Checkout
        uses: actions/checkout@master
      - name: Set up php
        uses: shivammathur/setup-php@master
        with:
          php-version: 7.4
          coverage: none
      - name: Install dependencies
        run: composer install
      - name: Install dependencies
        run: composer require --dev christophwurst/nextcloud:${{ matrix.ocp-version }}
      - name: Run coding standards check
        run: ./vendor/bin/psalm