-
-
Notifications
You must be signed in to change notification settings - Fork 133
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into add-composer-require-checker
- Loading branch information
Showing
369 changed files
with
42,977 additions
and
1,205 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,7 @@ | ||
COMPOSE_PROJECT_NAME=yii-demo | ||
|
||
REGISTRY=localhost | ||
DOMAIN=yii-demo.localhost | ||
[email protected] | ||
# Get short image tag git rev-parse --short HEAD | ||
IMAGE_TAG=00001 |
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,99 @@ | ||
defaults: | ||
run: | ||
working-directory: blog-api | ||
on: | ||
pull_request: | ||
paths-ignore: | ||
- 'blog-api/docs/**' | ||
- 'blog-api/README.md' | ||
- 'blog-api/CHANGELOG.md' | ||
- 'blog-api/.gitignore' | ||
- 'blog-api/.env.example' | ||
- 'blog-api/.gitattributes' | ||
- 'blog-api/infection.json.dist' | ||
- 'blog-api/psalm.xml' | ||
|
||
push: | ||
branches: ['master'] | ||
paths-ignore: | ||
- 'blog-api/docs/**' | ||
- 'blog-api/README.md' | ||
- 'blog-api/CHANGELOG.md' | ||
- 'blog-api/.gitignore' | ||
- 'blog-api/.env.example' | ||
- 'blog-api/.gitattributes' | ||
- 'blog-api/infection.json.dist' | ||
- 'blog-api/psalm.xml' | ||
|
||
schedule: | ||
- cron: '0 0 * * *' | ||
|
||
name: blog-api build | ||
|
||
jobs: | ||
tests: | ||
name: PHP ${{ matrix.php }}-${{ matrix.os }} | ||
|
||
env: | ||
extensions: fileinfo, pdo, pdo_sqlite, intl, pcntl | ||
key: cache-v1 | ||
YII_C3: true | ||
working_directory: blog-api | ||
|
||
runs-on: ${{ matrix.os }} | ||
|
||
strategy: | ||
matrix: | ||
os: | ||
- ubuntu-latest | ||
- windows-latest | ||
|
||
php: | ||
- 8.3 | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
working-directory: ${{ env.working_directory }} | ||
|
||
- name: Install PHP with extensions | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: ${{ matrix.php }} | ||
extensions: ${{ env.extensions }} | ||
ini-values: date.timezone='UTC' | ||
tools: composer:v2 | ||
coverage: pcov | ||
working-directory: ${{ env.working_directory }} | ||
|
||
- name: Determine composer cache directory on Linux | ||
if: matrix.os == 'ubuntu-latest' | ||
run: echo "COMPOSER_CACHE_DIR=$(composer config cache-dir)" >> $GITHUB_ENV | ||
working-directory: ${{ env.working_directory }} | ||
|
||
- name: Determine composer cache directory on Windows | ||
if: matrix.os == 'windows-latest' | ||
run: echo "COMPOSER_CACHE_DIR=~\AppData\Local\Composer" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append | ||
working-directory: ${{ env.working_directory }} | ||
|
||
- name: Cache dependencies installed with composer | ||
uses: actions/cache@v3 | ||
with: | ||
path: ${{ env.COMPOSER_CACHE_DIR }} | ||
key: php${{ matrix.php }}-composer-${{ hashFiles('**/composer.json') }} | ||
restore-keys: | | ||
php${{ matrix.php }}-composer- | ||
working-directory: ${{ env.working_directory }} | ||
|
||
- name: Update composer | ||
run: composer self-update | ||
working-directory: ${{ env.working_directory }} | ||
|
||
- name: Install dependencies with composer | ||
run: composer update --prefer-dist --no-interaction --no-progress --optimize-autoloader --ansi | ||
working-directory: ${{ env.working_directory }} | ||
|
||
- name: Run tests codeception | ||
run: vendor/bin/codecept run | ||
working-directory: ${{ env.working_directory }} |
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,87 @@ | ||
defaults: | ||
run: | ||
working-directory: blog-api | ||
on: | ||
pull_request: | ||
paths-ignore: | ||
- 'blog-api/docs/**' | ||
- 'blog-api/README.md' | ||
- 'blog-api/CHANGELOG.md' | ||
- 'blog-api/.gitignore' | ||
- 'blog-api/.env.example' | ||
- 'blog-api/.gitattributes' | ||
- 'blog-api/phpunit.xml.dist' | ||
- 'blog-api/psalm.xml' | ||
|
||
push: | ||
branches: ['master'] | ||
paths-ignore: | ||
- 'blog-api/docs/**' | ||
- 'blog-api/README.md' | ||
- 'blog-api/CHANGELOG.md' | ||
- 'blog-api/.gitignore' | ||
- 'blog-api/.env.example' | ||
- 'blog-api/.gitattributes' | ||
- 'blog-api/phpunit.xml.dist' | ||
- 'blog-api/psalm.xml' | ||
|
||
schedule: | ||
- cron: '0 0 * * *' | ||
|
||
name: blog-api dependency checker | ||
|
||
jobs: | ||
mutation: | ||
name: PHP ${{ matrix.php }}-${{ matrix.os }} | ||
|
||
env: | ||
working_directory: blog-api | ||
|
||
runs-on: ${{ matrix.os }} | ||
|
||
strategy: | ||
matrix: | ||
os: | ||
- ubuntu-latest | ||
|
||
php: | ||
- 8.3 | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
working-directory: ${{ env.working_directory }} | ||
|
||
- name: Install PHP | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: ${{ matrix.php }} | ||
tools: composer:v2, cs2pr | ||
coverage: none | ||
working-directory: ${{ env.working_directory }} | ||
|
||
- name: Determine composer cache directory | ||
run: echo "COMPOSER_CACHE_DIR=$(composer config cache-dir)" >> $GITHUB_ENV | ||
working-directory: ${{ env.working_directory }} | ||
|
||
- name: Cache dependencies installed with composer | ||
uses: actions/cache@v3 | ||
with: | ||
path: ${{ env.COMPOSER_CACHE_DIR }} | ||
key: php${{ matrix.php }}-composer-${{ hashFiles('**/composer.json') }} | ||
restore-keys: | | ||
php${{ matrix.php }}-composer- | ||
working-directory: ${{ env.working_directory }} | ||
|
||
- name: Update composer | ||
run: composer self-update | ||
working-directory: ${{ env.working_directory }} | ||
|
||
- name: Install maglnet/composer-require-checker | ||
run: composer require maglnet/composer-require-checker:^4.0 | ||
working-directory: ${{ env.working_directory }} | ||
|
||
- name: Check dependency | ||
run: vendor/bin/composer-require-checker | ||
working-directory: ${{ env.working_directory }} |
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,87 @@ | ||
defaults: | ||
run: | ||
working-directory: blog-api | ||
on: | ||
pull_request: | ||
paths-ignore: | ||
- 'blog-api/docs/**' | ||
- 'blog-api/README.md' | ||
- 'blog-api/CHANGELOG.md' | ||
- 'blog-api/.gitignore' | ||
- 'blog-api/.env.example' | ||
- 'blog-api/.gitattributes' | ||
- 'blog-api/infection.json.dist' | ||
- 'blog-api/phpunit.xml.dist' | ||
|
||
push: | ||
branches: ['master'] | ||
paths-ignore: | ||
- 'blog-api/docs/**' | ||
- 'blog-api/README.md' | ||
- 'blog-api/CHANGELOG.md' | ||
- 'blog-api/.gitignore' | ||
- 'blog-api/.env.example' | ||
- 'blog-api/.gitattributes' | ||
- 'blog-api/infection.json.dist' | ||
- 'blog-api/phpunit.xml.dist' | ||
|
||
schedule: | ||
- cron: '0 0 * * *' | ||
|
||
name: blog-api static analysis | ||
|
||
jobs: | ||
mutation: | ||
name: PHP ${{ matrix.php }}-${{ matrix.os }} | ||
|
||
env: | ||
working_directory: blog-api | ||
|
||
runs-on: ${{ matrix.os }} | ||
|
||
strategy: | ||
matrix: | ||
os: | ||
- ubuntu-latest | ||
|
||
php: | ||
- 8.3 | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
working-directory: ${{ env.working_directory }} | ||
|
||
- name: Install PHP | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: ${{ matrix.php }} | ||
tools: composer:v2, cs2pr | ||
coverage: none | ||
working-directory: ${{ env.working_directory }} | ||
|
||
- name: Determine composer cache directory | ||
run: echo "COMPOSER_CACHE_DIR=$(composer config cache-dir)" >> $GITHUB_ENV | ||
working-directory: ${{ env.working_directory }} | ||
|
||
- name: Cache dependencies installed with composer | ||
uses: actions/cache@v3 | ||
with: | ||
path: ${{ env.COMPOSER_CACHE_DIR }} | ||
key: php${{ matrix.php }}-composer-${{ hashFiles('**/composer.json') }} | ||
restore-keys: | | ||
php${{ matrix.php }}-composer- | ||
working-directory: ${{ env.working_directory }} | ||
|
||
- name: Update composer | ||
run: composer self-update | ||
working-directory: ${{ env.working_directory }} | ||
|
||
- name: Install dependencies with composer | ||
run: composer update --prefer-dist --no-interaction --no-progress --optimize-autoloader --ansi | ||
working-directory: ${{ env.working_directory }} | ||
|
||
- name: Static analysis | ||
run: vendor/bin/psalm --shepherd --stats --output-format=checkstyle | cs2pr --graceful-warnings --colorize | ||
working-directory: ${{ env.working_directory }} |
Oops, something went wrong.