Skip to content

Commit

Permalink
Merge branch 'master' into add-composer-require-checker
Browse files Browse the repository at this point in the history
  • Loading branch information
xepozz authored Nov 2, 2024
2 parents e2dca7b + 697842d commit a69e2eb
Show file tree
Hide file tree
Showing 369 changed files with 42,977 additions and 1,205 deletions.
7 changes: 7 additions & 0 deletions .env.dist
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
3 changes: 0 additions & 3 deletions .env.test

This file was deleted.

6 changes: 3 additions & 3 deletions .github/CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ the project's leadership.

This Code of Conduct is adapted from the [Contributor Covenant][homepage],
version 1.4.0, available at
[http://contributor-covenant.org/version/1/4/][version]
[https://contributor-covenant.org/version/1/4/][version]

[homepage]: http://contributor-covenant.org
[version]: http://contributor-covenant.org/version/1/4/
[homepage]: https://contributor-covenant.org
[version]: https://contributor-covenant.org/version/1/4/
99 changes: 99 additions & 0 deletions .github/workflows/blog-api_build.yml
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 }}
87 changes: 87 additions & 0 deletions .github/workflows/blog-api_dependency.yml
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 }}
87 changes: 87 additions & 0 deletions .github/workflows/blog-api_static.yml
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 }}
Loading

0 comments on commit a69e2eb

Please sign in to comment.