Skip to content

Commit

Permalink
Merge pull request #837 from bavix/11.x-831-the-buy-function-only-acc…
Browse files Browse the repository at this point in the history
…epts-integer-data

fix Qodana
  • Loading branch information
rez1dent3 authored Jan 5, 2024
2 parents 5f41417 + 1d4a652 commit 8b760f0
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/code-quality.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,30 @@ jobs:
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.2
extensions: bcmath
env:
runner: self-hosted

- name: Validate composer.json and composer.lock
run: composer validate --strict

- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v3
with:
path: vendor
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-php-
- name: Install dependencies
run: composer install --prefer-dist --no-progress

- name: 'Qodana Scan'
uses: JetBrains/[email protected]
env:
Expand Down

0 comments on commit 8b760f0

Please sign in to comment.