mirror of
https://github.com/chylex/Nextcloud-News.git
synced 2025-02-05 16:46:00 +01:00
5fde4cc07c
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
57 lines
1.5 KiB
YAML
57 lines
1.5 KiB
YAML
name: Static analysis
|
|
on:
|
|
pull_request
|
|
jobs:
|
|
static-phpstan-analysis:
|
|
runs-on: ubuntu-latest
|
|
continue-on-error: true
|
|
strategy:
|
|
matrix:
|
|
php-versions: ['8.0', '8.1', '8.2' ]
|
|
nextcloud: [ 'stable27' ]
|
|
database: [ 'sqlite' ]
|
|
include:
|
|
- php-versions: 8.2
|
|
nextcloud: pre-release
|
|
database: sqlite
|
|
experimental: true
|
|
name: "phpstan: Nextcloud ${{ matrix.nextcloud }} with ${{ matrix.php-versions }}"
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
- name: Set up php
|
|
uses: shivammathur/setup-php@master
|
|
with:
|
|
php-version: ${{ matrix.php-versions }}
|
|
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: false
|
|
force: true
|
|
|
|
- name: Prep code scanning
|
|
working-directory: ../server/apps/news
|
|
run: make php-test-dependencies
|
|
|
|
- name: PHPCS
|
|
working-directory: ../server/apps/news
|
|
run: make phpcs
|
|
|
|
- name: PHPStan
|
|
working-directory: ../server/apps/news
|
|
run: make phpstan
|