summaryrefslogtreecommitdiffstats
path: root/.github/workflows/static-code-check.yml
blob: cad11c9399180e4a0edc0bf07a19e47520d7696a (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: [ '21.0.0.x-dev', '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