-
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.
- Loading branch information
Showing
3 changed files
with
44 additions
and
110 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,128 +1,61 @@ | ||
name: CI | ||
|
||
env: | ||
APPLICATION_ENV: 'development' | ||
APPLICATION_STORE: 'DE' | ||
PROJECT: 'OpenAi' | ||
DATABASE_VERSION: 10.2 | ||
DATABASE_HOST: 127.0.0.1 | ||
DATABASE_PORT: 3306 | ||
DATABASE_NAME: eu-docker | ||
DATABASE_USERNAME: root | ||
DATABASE_PASSWORD: secret | ||
DATABASE_ROOT_PASSWORD: secret | ||
DATABASE_ALLOW_EMPTY_PASSWORD: false | ||
DATABASE_CHARACTER_SET: utf8 | ||
DATABASE_COLLATE: utf8_general_ci | ||
|
||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- master | ||
- 'master' | ||
pull_request: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
ci: | ||
name: "OpenAi" | ||
runs-on: ubuntu-20.04 | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
php: [ '8.1', '8.2' ] | ||
validation: | ||
name: Validation | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Setup Database | ||
uses: getong/[email protected] | ||
with: | ||
host port: ${{ env.DATABASE_PORT }} | ||
container port: ${{ env.DATABASE_PORT }} | ||
character set server: ${{ env.DATABASE_CHARACTER_SET }} | ||
collation server: ${{ env.DATABASE_COLLATE }} | ||
mariadb version: ${{ env.DATABASE_VERSION }} | ||
mysql database: ${{ env.DATABASE_NAME }} | ||
mysql root password: ${{ env.DATABASE_ROOT_PASSWORD }} | ||
mysql user: ${{ env.DATABASE_USERNAME }} | ||
mysql password: ${{ env.DATABASE_PASSWORD }} | ||
|
||
- name: Setup PHP | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: ${{ matrix.php }} | ||
extensions: mbstring, intl, bcmath | ||
tools: composer:v2 | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Configure sysctl limits | ||
run: | | ||
sudo swapoff -a | ||
sudo sysctl -w vm.swappiness=1 | ||
sudo sysctl -w fs.file-max=262144 | ||
sudo sysctl -w vm.max_map_count=262144 | ||
- name: Setup PHP | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: '8.2' | ||
extensions: mbstring, intl, bcmath | ||
coverage: none | ||
|
||
- name: Composer get cache directory | ||
id: composer-cache | ||
run: | | ||
echo "::set-output name=dir::$(composer config cache-files-dir)" | ||
- name: Composer Install | ||
run: composer install --prefer-dist --no-interaction --profile | ||
|
||
- name: Composer cache | ||
uses: actions/cache@v2 | ||
with: | ||
path: ${{ steps.composer-cache.outputs.dir }} | ||
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} | ||
restore-keys: | | ||
${{ runner.os }}-composer- | ||
- name: Run validation | ||
run: composer validate | ||
|
||
- name: Composer validate | ||
run: composer validate | ||
- name: Syntax check | ||
run: find ./src -path src -prune -o -type f -name '*.php' -print0 | xargs -0 -n1 -P4 php -l -n | (! grep -v "No syntax errors detected" ) | ||
|
||
- name: Composer install | ||
run: | | ||
composer --version | ||
composer install | ||
- name: Run CodeStyle checks | ||
run: composer cs-check | ||
|
||
- name: Run CodeStyle checks | ||
run: composer cs-check | ||
- name: PHPStan setup | ||
run: composer stan-setup | ||
|
||
- name: Run PHPStan | ||
run: composer stan | ||
- name: Run PHPStan | ||
run: composer stan | ||
|
||
lowest: | ||
name: Prefer Lowest | ||
runs-on: ubuntu-20.04 | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout@v2 | ||
uses: actions/checkout@v2 | ||
|
||
- name: Validate composer.json and composer.lock | ||
run: composer validate | ||
|
||
- name: Composer get cache directory | ||
id: composer-cache | ||
run: | | ||
echo "::set-output name=dir::$(composer config cache-files-dir)" | ||
- name: Composer cache | ||
uses: actions/cache@v2 | ||
with: | ||
path: ${{ steps.composer-cache.outputs.dir }} | ||
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} | ||
restore-keys: | | ||
${{ runner.os }}-composer- | ||
- name: Setup PHP | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: '8.1' | ||
extensions: mbstring, intl, bcmath | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Composer prefer lowest | ||
run: composer lowest-setup | ||
- name: Setup PHP | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: '8.1' | ||
extensions: mbstring, intl, bcmath | ||
coverage: none | ||
|
||
- name: Run PHPStan (currently not running properly) | ||
run: composer stan || true | ||
- name: Composer Install | ||
run: composer install --prefer-dist --no-interaction --profile | ||
|
||
- name: Validate prefer lowest | ||
run: vendor/bin/validate-prefer-lowest -m | ||
- name: Composer Update | ||
run: composer update --prefer-lowest --prefer-dist --no-interaction --profile -vvv |
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 |
---|---|---|
@@ -1,6 +1,8 @@ | ||
parameters: | ||
level: 8 | ||
paths: | ||
- src/ | ||
ignoreErrors: | ||
- message: '#.*has invalid type Generated\\Shared\\Transfer\\.*#' | ||
- message: '#.*on an unknown class Generated\\Shared\\Transfer\\.*#' | ||
- message: '#.*has invalid return type Generated\\Shared\\Transfer\\.*#' | ||
- '#Call to method .+ on an unknown class .+Transfer#' | ||
- '#Parameter .+ of method .+ has invalid typehint type .+Transfer#' | ||
- '#Return typehint of method .+ has invalid type .+Transfer#' |