Skip to content

Commit

Permalink
Merge pull request #4 from upmind-automation/feature/3-github-actions…
Browse files Browse the repository at this point in the history
…-workflow

#3 - Github Actions workflow
  • Loading branch information
uphlewis authored Feb 15, 2024
2 parents e227c0b + 43bec36 commit 6109c1e
Show file tree
Hide file tree
Showing 3 changed files with 55 additions and 0 deletions.
47 changes: 47 additions & 0 deletions .github/workflows/static-analysis.yml
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
4 changes: 4 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@
"php": "7.4 - 8.3",
"upmind/provision-provider-base": "^3.0 || ^4.0"
},
"require-dev": {
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^9.0 || ^10.0 || ^11.0"
},
"extra": {
"laravel": {
"providers": [
Expand Down
4 changes: 4 additions & 0 deletions phpstan.neon.dist
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
parameters:
level: 0
paths:
- src

0 comments on commit 6109c1e

Please sign in to comment.