Add "App code check" github action

Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
Joas Schilling 2021-02-04 11:20:28 +01:00
parent 075a02f42f
commit c30fdd2c34
No known key found for this signature in database
GPG Key ID: 7076EA9751AACDDA
2 changed files with 55 additions and 3 deletions

55
.github/workflows/app-code-check.yml vendored Normal file
View File

@ -0,0 +1,55 @@
name: PHP AppCode Check
on:
pull_request:
push:
branches:
- master
- stable*
env:
APP_NAME: registration
jobs:
unit-tests:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: ['7.4']
server-versions: ['stable20', 'stable21', '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@v2
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 }}

View File

@ -49,8 +49,5 @@ install:
- . ${BUILD_APP_MODULE_DIR}/tests/scripts/core-setup.sh - . ${BUILD_APP_MODULE_DIR}/tests/scripts/core-setup.sh
script: script:
# Run app code checker but do not fail, as we have to use private API for now
- . ${BUILD_APP_MODULE_DIR}/tests/scripts/app-check-code.sh || true
# Run PHP tests # Run PHP tests
- . ${BUILD_APP_MODULE_DIR}/tests/scripts/phpunit.sh - . ${BUILD_APP_MODULE_DIR}/tests/scripts/phpunit.sh