-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from upmind-automation/feature/3-github-actions…
…-workflow #3 - Github Actions workflow
- Loading branch information
Showing
3 changed files
with
55 additions
and
0 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,47 @@ | ||
# Workflow name | ||
name: Static Analysis | ||
|
||
# Triggers | ||
on: | ||
push: | ||
branches: | ||
- 'main' | ||
pull_request: | ||
branches: | ||
- 'main' | ||
|
||
# Jobs/Pipelines | ||
jobs: | ||
phpstan: | ||
name: 'PHP Stan' | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
php: [ 7.4, 8.1, 8.2, 8.3 ] | ||
steps: | ||
- name: "Checkout Code" | ||
uses: actions/checkout@v4 | ||
|
||
- name: "Setup PHP with tools" | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: "${{ matrix.php }}" | ||
tools: composer, phpstan | ||
|
||
- name: "Get composer cache directory" | ||
id: composer-cache | ||
run: 'echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT' | ||
|
||
- name: "Cache dependencies" | ||
uses: actions/cache@v4 | ||
with: | ||
path: "${{ steps.composer-cache.outputs.dir }}" | ||
key: "${{ runner.os }}-php-${{ matrix.php}}-composer-${{ hashFiles('**/composer.json') }}" | ||
restore-keys: "${{ runner.os }}-php-${{ matrix.php}}-composer-" | ||
|
||
- name: "Install Composer dependencies" | ||
run: composer install --prefer-dist | ||
|
||
- name: "Run PHPStan Static Analysis" | ||
run: phpstan analyse |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
parameters: | ||
level: 0 | ||
paths: | ||
- src |