summaryrefslogtreecommitdiffstats
path: root/.github/workflows/api-php-static-code-check.yml
blob: 5f9216a4b96ccd51aca1f4cb3a7536cd2ab8ca19 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
name: Static analysis
on:
  pull_request
jobs:
  static-phpstan-analysis:
    runs-on: ubuntu-latest
    continue-on-error: true
    strategy:
      matrix:
        php-versions: [ '7.4' ]
        nextcloud: [ 'stable22' ]
        database: [ 'sqlite' ]
    name: "phpstan: Nextcloud ${{ matrix.nextcloud }}"
    steps:
      - name: Checkout
        uses: actions/checkout@v2.3.4
      - name: Set up php
        uses: shivammathur/setup-php@master
        with:
          php-version: 7.4
          extensions: pdo_sqlite,pdo_mysql,pdo_pgsql,gd,zip
          coverage: none

      - name: Set up server non MySQL
        uses: SMillerDev/nextcloud-actions/setup-nextcloud@main
        with:
          cron: true
          version: ${{ matrix.nextcloud }}
          database-type: ${{ matrix.database }}

      - name: Build app
        run: make

      - name: Configure server with app
        uses: SMillerDev/nextcloud-actions/setup-nextcloud-app@main
        with:
          app: 'news'
          check-code: true
          force: true

      - name: Prep code scanning
        working-directory: ../server/apps/news
        run: make php-test-dependencies

      - name: PHPCS
        working-directory: ../server/apps/news
        run: pwd && make phpcs #debug pwd

      - name: PHPStan
        working-directory: ../server/apps/news
        run: make phpstan