-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
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
3 changed files
with
70 additions
and
74 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 |
---|---|---|
@@ -1,82 +1,82 @@ | ||
name: Static analysis | ||
# name: Static analysis | ||
|
||
on: | ||
pull_request: | ||
types: [opened, synchronize, reopened] | ||
# on: | ||
# pull_request: | ||
# types: [opened, synchronize, reopened] | ||
|
||
workflow_run: | ||
workflows: ['Compress images'] | ||
types: [completed] | ||
# workflow_run: | ||
# workflows: ['Compress images'] | ||
# types: [completed] | ||
|
||
env: | ||
php-version: '8.2' | ||
# env: | ||
# php-version: '8.2' | ||
|
||
concurrency: | ||
group: Static analysis ${{ github.ref }} | ||
cancel-in-progress: true | ||
# concurrency: | ||
# group: Static analysis ${{ github.ref }} | ||
# cancel-in-progress: true | ||
|
||
jobs: | ||
psalm: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout sources | ||
uses: actions/checkout@v4 | ||
# jobs: | ||
# psalm: | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - name: Checkout sources | ||
# uses: actions/checkout@v4 | ||
|
||
- name: Setup PHP ${{ env.php-version }} | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: ${{ env.php-version }} | ||
extensions: redis | ||
coverage: none | ||
# - name: Setup PHP ${{ env.php-version }} | ||
# uses: shivammathur/setup-php@v2 | ||
# with: | ||
# php-version: ${{ env.php-version }} | ||
# extensions: redis | ||
# coverage: none | ||
|
||
- name: Get Composer Cache Directory | ||
id: composer-cache | ||
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT | ||
- name: Cache composer files | ||
uses: actions/cache@v3 | ||
with: | ||
path: ${{ steps.composer-cache.outputs.dir }} | ||
key: ${{ runner.os }}-composer-${{ env.php-version }}-${{ hashFiles('**/composer.lock') }} | ||
restore-keys: | | ||
${{ runner.os }}-composer-${{ env.php-version }}-${{ hashFiles('**/composer.lock') }} | ||
${{ runner.os }}-composer-${{ env.php-version }} | ||
${{ runner.os }}-composer- | ||
# - name: Get Composer Cache Directory | ||
# id: composer-cache | ||
# run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT | ||
# - name: Cache composer files | ||
# uses: actions/cache@v3 | ||
# with: | ||
# path: ${{ steps.composer-cache.outputs.dir }} | ||
# key: ${{ runner.os }}-composer-${{ env.php-version }}-${{ hashFiles('**/composer.lock') }} | ||
# restore-keys: | | ||
# ${{ runner.os }}-composer-${{ env.php-version }}-${{ hashFiles('**/composer.lock') }} | ||
# ${{ runner.os }}-composer-${{ env.php-version }} | ||
# ${{ runner.os }}-composer- | ||
|
||
- name: Install dependencies | ||
run: composer install --no-progress --no-interaction --prefer-dist --optimize-autoloader | ||
# - name: Install dependencies | ||
# run: composer install --no-progress --no-interaction --prefer-dist --optimize-autoloader | ||
|
||
- name: Run psalm | ||
run: vendor/bin/psalm --output-format=github | ||
# - name: Run psalm | ||
# run: vendor/bin/psalm --output-format=github | ||
|
||
|
||
phpstan: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout sources | ||
uses: actions/checkout@v4 | ||
# phpstan: | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - name: Checkout sources | ||
# uses: actions/checkout@v4 | ||
|
||
- name: Setup PHP ${{ env.php-version }} | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: ${{ env.php-version }} | ||
extensions: redis | ||
coverage: none | ||
# - name: Setup PHP ${{ env.php-version }} | ||
# uses: shivammathur/setup-php@v2 | ||
# with: | ||
# php-version: ${{ env.php-version }} | ||
# extensions: redis | ||
# coverage: none | ||
|
||
- name: Get Composer Cache Directory | ||
id: composer-cache | ||
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT | ||
- name: Cache composer files | ||
uses: actions/cache@v3 | ||
with: | ||
path: ${{ steps.composer-cache.outputs.dir }} | ||
key: ${{ runner.os }}-composer-${{ env.php-version }}-${{ hashFiles('**/composer.lock') }} | ||
restore-keys: | | ||
${{ runner.os }}-composer-${{ env.php-version }}-${{ hashFiles('**/composer.lock') }} | ||
${{ runner.os }}-composer-${{ env.php-version }} | ||
${{ runner.os }}-composer- | ||
# - name: Get Composer Cache Directory | ||
# id: composer-cache | ||
# run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT | ||
# - name: Cache composer files | ||
# uses: actions/cache@v3 | ||
# with: | ||
# path: ${{ steps.composer-cache.outputs.dir }} | ||
# key: ${{ runner.os }}-composer-${{ env.php-version }}-${{ hashFiles('**/composer.lock') }} | ||
# restore-keys: | | ||
# ${{ runner.os }}-composer-${{ env.php-version }}-${{ hashFiles('**/composer.lock') }} | ||
# ${{ runner.os }}-composer-${{ env.php-version }} | ||
# ${{ runner.os }}-composer- | ||
|
||
- name: Install dependencies | ||
run: composer install --no-progress --no-interaction --prefer-dist --optimize-autoloader | ||
# - name: Install dependencies | ||
# run: composer install --no-progress --no-interaction --prefer-dist --optimize-autoloader | ||
|
||
- name: Run phpstan | ||
run: vendor/bin/phpstan analyse | ||
# - name: Run phpstan | ||
# run: vendor/bin/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