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

github.com/nextcloud/polls.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordartcafe <github@dartcafe.de>2020-09-03 09:49:29 +0300
committerdartcafe <github@dartcafe.de>2020-09-03 09:49:29 +0300
commit0ba8347995ed5f8485be3d1bd7b5c044d975b320 (patch)
tree9160c14a7f774b3f235f5d6b703ef7c9912afebc /.github
parent4e46b492fca111a0deb2fa012eb4a126990cf29a (diff)
remove AppCode check action
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/app-code-check.yml30
1 files changed, 0 insertions, 30 deletions
diff --git a/.github/workflows/app-code-check.yml b/.github/workflows/app-code-check.yml
deleted file mode 100644
index 9e7b0e36..00000000
--- a/.github/workflows/app-code-check.yml
+++ /dev/null
@@ -1,30 +0,0 @@
-name: PHP AppCode Check
-
-on:
- pull_request:
- push:
-
-jobs:
- unit-tests:
- runs-on: ubuntu-latest
- strategy:
- matrix:
- php-versions: ['7.2', '7.3', '7.4']
- nextcloud-versions: ['master']
- name: AppCode check
- steps:
- - name: Set up php${{ matrix.php-versions }}
- uses: shivammathur/setup-php@master
- with:
- php-version: ${{ matrix.php-versions }}
- extensions: ctype,curl,dom,gd,iconv,intl,json,mbstring,openssl,posix,sqlite,xml,zip
- coverage: xdebug
- - name: Checkout Nextcloud
- run: git clone https://github.com/nextcloud/server.git --recursive --depth 1 -b ${{ matrix.nextcloud-versions }} nextcloud
- - name: Checkout
- uses: actions/checkout@master
- with:
- path: nextcloud/apps/polls
- - name: App Code check
- working-directory: nextcloud
- run: php occ app:check-code polls