-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
289 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
name: "Continuous integration" | ||
|
||
on: | ||
push: | ||
branches: | ||
- "master" | ||
- "develop" | ||
tags: | ||
- "*" | ||
pull_request: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
lint: | ||
name: "Lint" | ||
runs-on: "ubuntu-latest" | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
include: | ||
- {php-version: "7.4"} | ||
- {php-version: "8.0"} | ||
- {php-version: "8.1"} | ||
- {php-version: "8.2"} | ||
- {php-version: "8.3-rc"} | ||
steps: | ||
- name: "Checkout" | ||
uses: "actions/checkout@v4" | ||
- name: "Setup PHP" | ||
uses: "shivammathur/setup-php@v2" | ||
with: | ||
php-version: "${{ matrix.php-version }}" | ||
coverage: "none" | ||
tools: "composer, cs2pr" | ||
- name: "Get Composer cache directory" | ||
id: "composer-cache" | ||
run: | | ||
echo "::set-output name=dir::$(composer config cache-files-dir)" | ||
- name: "Restore dependencies cache" | ||
uses: "actions/cache@v3" | ||
with: | ||
path: "${{ steps.composer-cache.outputs.dir }}" | ||
key: "${{ github.job }}-${{ matrix.php-version }}-dependencies-${{ hashFiles('**/composer.lock') }}" | ||
- name: "Install Composer dependencies" | ||
run: | | ||
composer install --ansi --no-interaction --no-progress --prefer-dist | ||
- name: "PHP Parallel Lint" | ||
run: | | ||
vendor/bin/parallel-lint --colors --checkstyle --exclude ./vendor/ . | cs2pr | ||
- name: "PHP_CodeSniffer" | ||
run: | | ||
vendor/bin/phpcs -q --report=checkstyle | cs2pr | ||
- name: "Check for missing/outdated headers" | ||
run: | | ||
vendor/bin/licence-headers-check --ansi --no-interaction | ||
- name: Checkout GLPI | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: glpi-project/glpi | ||
path: glpi | ||
fetch-depth: 1 | ||
ref: 10.0/bugfixes | ||
- name: Copy plugin | ||
run: rsync -avr --exclude='glpi' ./* glpi/plugins/sccm | ||
- name: PHPStan checks | ||
run: cd glpi/plugins/sccm && php vendor/bin/phpstan analyze --ansi --memory-limit=1G --no-interaction --no-progress |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?xml version="1.0"?> | ||
<ruleset> | ||
<file>.</file> | ||
<exclude-pattern>/.git/</exclude-pattern> | ||
<exclude-pattern type="relative">^vendor/</exclude-pattern> | ||
|
||
<arg name="colors" /> | ||
<arg name="extensions" value="php" /> | ||
<arg value="p" /> | ||
<arg name="warning-severity" value="0" /> | ||
|
||
<rule ref="PSR12"> | ||
<exclude name="Generic.Files.LineLength" /> | ||
<exclude name="PSR1.Classes.ClassDeclaration.MissingNamespace" /> | ||
</rule> | ||
<rule ref="Generic.Arrays.ArrayIndent"></rule> | ||
</ruleset> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
parameters: | ||
parallel: | ||
maximumNumberOfProcesses: 2 | ||
level: 1 | ||
bootstrapFiles: | ||
- ../../inc/based_config.php | ||
- setup.php | ||
paths: | ||
- inc | ||
scanDirectories: | ||
- ../../inc | ||
- ../../src | ||
stubFiles: | ||
- ../../stubs/glpi_constants.php |