Add GitHub workflows

This commit is contained in:
Sebastian Meyer 2023-11-21 22:25:52 +01:00
parent 11e9d4e827
commit 5522936e20
3 changed files with 91 additions and 0 deletions

16
.github/dependabot.yml vendored Normal file
View File

@ -0,0 +1,16 @@
version: 2
updates:
- package-ecosystem: "composer"
directory: "/"
schedule:
interval: "weekly"
assignees:
- "sebastian-meyer"
labels: [ ]
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "monthly"
assignees:
- "sebastian-meyer"
labels: [ ]

40
.github/workflows/phpmd.yml vendored Normal file
View File

@ -0,0 +1,40 @@
name: PHP Mess Detector
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
PHPMD:
name: PHPMD Scanner
runs-on: ubuntu-latest
permissions:
contents: read
security-events: write
actions: read
steps:
- name: Checkout Source Code
uses: actions/checkout@v4
- name: Setup Environment
uses: shivammathur/setup-php@v2
with:
php-version: "8.0"
coverage: none
tools: phpmd
- name: Run PHPMD
run: phpmd . sarif codesize --reportfile phpmd-results.sarif
continue-on-error: true
- name: Upload Analysis Results
uses: github/codeql-action/upload-sarif@v2
with:
sarif_file: phpmd-results.sarif
wait-for-processing: true

35
.github/workflows/phpstan.yml vendored Normal file
View File

@ -0,0 +1,35 @@
name: PHP Static Analyzer
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
PHPStan:
name: PHPStan Scanner
runs-on: ubuntu-latest
permissions:
contents: read
security-events: write
actions: read
steps:
- name: Checkout Source Code
uses: actions/checkout@v4
- name: Setup Environment
uses: php-actions/composer@v6
with:
command: update
php_version: "8.0"
- name: Run PHPStan
uses: php-actions/phpstan@v3
with:
path: src/
configuration: phpstan.dist.neon