Welcome to mirror list, hosted at ThFree Co, Russian Federation.

app-code-check.yml « workflows « .github - github.com/nextcloud/notifications.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 98837646827dd38a0e2c41b2df52fa451ad9c380 (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
52
53
54
55
name: PHP AppCode Check

on:
  pull_request:
  push:
    branches:
      - master
      - stable*

env:
  APP_NAME: notifications

jobs:
  unit-tests:
    runs-on: ubuntu-latest

    strategy:
      matrix:
        php-versions: ['7.4']
        server-versions: ['master']

    name: AppCode check php${{ matrix.php-versions }}-${{ matrix.server-versions }}
    steps:
      - name: Checkout server
        uses: actions/checkout@v2
        with:
          repository: nextcloud/server
          ref: ${{ matrix.server-versions }}

      - name: Checkout submodules
        shell: bash
        run: |
          auth_header="$(git config --local --get http.https://github.com/.extraheader)"
          git submodule sync --recursive
          git -c "http.extraheader=$auth_header" -c protocol.version=2 submodule update --init --force --recursive --depth=1

      - name: Checkout app
        uses: actions/checkout@v2
        with:
          path: apps/${{ env.APP_NAME }}

      - name: Set up php ${{ matrix.php-versions }}
        uses: shivammathur/setup-php@v1
        with:
          php-version: ${{ matrix.php-versions }}
          tools: phpunit
          extensions: mbstring, iconv, fileinfo, intl, sqlite, pdo_sqlite

      - name: Checkout app
        uses: actions/checkout@v2
        with:
          path: apps/${{ env.APP_NAME }}

      - name: App code check
        run: php occ app:check-code ${{ env.APP_NAME }}