зеркало из https://github.com/nextcloud/spreed.git
92 строки
3.1 KiB
YAML
92 строки
3.1 KiB
YAML
# SPDX-FileCopyrightText: 2023-2024 Nextcloud GmbH and Nextcloud contributors
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
name: Documentation
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- '.github/workflows/**'
|
|
- 'appinfo/**'
|
|
- 'lib/**'
|
|
- 'templates/**'
|
|
- 'tests/**'
|
|
- 'vendor/**'
|
|
- 'vendor-bin/**'
|
|
- '.php-cs-fixer.dist.php'
|
|
- 'composer.json'
|
|
- 'composer.lock'
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
concurrency:
|
|
group: occ-commands-${{ github.head_ref || github.run_id }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
occ-commands:
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
matrix:
|
|
php-versions: ['8.2']
|
|
server-versions: ['stable28']
|
|
|
|
steps:
|
|
- name: Set app env
|
|
run: |
|
|
# Split and keep last
|
|
echo "APP_NAME=${GITHUB_REPOSITORY##*/}" >> $GITHUB_ENV
|
|
|
|
- name: Checkout server
|
|
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
|
with:
|
|
submodules: true
|
|
repository: nextcloud/server
|
|
ref: ${{ matrix.server-versions }}
|
|
|
|
- name: Checkout app
|
|
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
|
with:
|
|
path: apps/${{ env.APP_NAME }}
|
|
|
|
- name: Set up php ${{ matrix.php-versions }}
|
|
uses: shivammathur/setup-php@2e947f1f6932d141d076ca441d0e1e881775e95b # v2.31.0
|
|
with:
|
|
php-version: ${{ matrix.php-versions }}
|
|
# https://docs.nextcloud.com/server/stable/admin_manual/installation/source_installation.html#prerequisites-for-manual-installation
|
|
extensions: bz2, ctype, curl, dom, fileinfo, gd, iconv, intl, json, libxml, mbstring, openssl, pcntl, posix, session, simplexml, xmlreader, xmlwriter, zip, zlib, sqlite, pdo_sqlite
|
|
coverage: none
|
|
ini-file: development
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Check composer file existence
|
|
id: check_composer
|
|
uses: andstor/file-existence-action@076e0072799f4942c8bc574a82233e1e4d13e9d6 # v3.0.0
|
|
with:
|
|
files: apps/${{ env.APP_NAME }}/composer.json
|
|
|
|
- name: Set up dependencies
|
|
# Only run if phpunit config file exists
|
|
if: steps.check_composer.outputs.files_exists == 'true'
|
|
working-directory: apps/${{ env.APP_NAME }}
|
|
run: composer i
|
|
|
|
- name: Set up Nextcloud
|
|
env:
|
|
DB_PORT: 4444
|
|
run: |
|
|
mkdir data
|
|
./occ maintenance:install --verbose --database=sqlite --database-name=nextcloud --database-host=127.0.0.1 --database-port=$DB_PORT --database-user=root --database-pass=rootpassword --admin-user admin --admin-pass admin
|
|
./occ app:enable ${{ env.APP_NAME }}
|
|
./occ config:system:set debug --value true --type boolean
|
|
|
|
- name: Check if documentation is up to date
|
|
id: check_documentation
|
|
run: |
|
|
./occ talk:developer:update-docs
|
|
cd apps/${{ env.APP_NAME }}
|
|
bash -c "[[ ! \"`git status --porcelain `\" ]] || (cat docs/occ.md && echo 'Documentation outdated. Run the command talk:developer:update-docs locally, commit the occ.md file and push the changes.' && exit 1)"
|