-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add CI * phpcbf * phpcbf+mano * visibility * phpstan level 0 * phpstan level 1 * Add phpstan config * Some phpstan lvl 2 fixes, won't be enforced * Fix CI
- Loading branch information
Showing
33 changed files
with
5,638 additions
and
4,989 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,31 @@ | ||
name: "Continuous integration" | ||
|
||
on: | ||
push: | ||
branches: | ||
- "master" | ||
tags: | ||
- "*" | ||
pull_request: | ||
schedule: | ||
- cron: "0 0 * * *" | ||
workflow_dispatch: | ||
|
||
jobs: | ||
ci: | ||
name: "GLPI ${{ matrix.glpi-version }} - php:${{ matrix.php-version }} - ${{ matrix.db-image }}" | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
include: | ||
- {glpi-version: "10.0.x", php-version: "7.4", db-image: "mysql:5.7"} | ||
- {glpi-version: "10.0.x", php-version: "8.0", db-image: "mysql:8.0"} | ||
- {glpi-version: "10.0.x", php-version: "8.1", db-image: "mariadb:10.2"} | ||
- {glpi-version: "10.0.x", php-version: "8.2", db-image: "mariadb:11.0"} | ||
- {glpi-version: "10.0.x", php-version: "8.3-rc", db-image: "mysql:8.0"} | ||
uses: "glpi-project/plugin-ci-workflows/.github/workflows/continuous-integration.yml@v1" | ||
with: | ||
plugin-key: "genericobject" | ||
glpi-version: "${{ matrix.glpi-version }}" | ||
php-version: "${{ matrix.php-version }}" | ||
db-image: "${{ matrix.db-image }}" |
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
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
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
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
Oops, something went wrong.