Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: dependency, testing and analysis workflows #23

Merged
merged 6 commits into from
Aug 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ MONOLOG_DEFAULT_LEVEL=DEBUG

QUEUE_CONNECTION=in-memory

CACHE_STORAGE=rr-local
CACHE_STORAGE=roadrunner

STORAGE_DEFAULT=default

Expand Down
149 changes: 149 additions & 0 deletions .github/workflows/dependency-analysis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,149 @@
---

on: # yamllint disable-line rule:truthy
pull_request:
branches:
- master
- develop
paths:
- 'app/config/**'
- 'app/src/**'
- 'app/tests/**'
- 'app/.php-cs-fixer.dist.php'
- 'app/app.php'
- 'app/functions.php'
- 'app/composer.json'
- 'app/composer.lock'
- 'app/composer-require-checker.json'

name: πŸ” Dependency analysis

env:
# Disable docker support in Makefile
APP_RUNNER: 'cd app &&'

jobs:
dependency-analysis:
timeout-minutes: 4
runs-on: ${{ matrix.os }}
concurrency:
cancel-in-progress: true
group: dependency-analysis-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
strategy:
fail-fast: true
matrix:
os:
- ubuntu-latest
php-version:
- '8.3'
dependencies:
- locked
steps:
- name: πŸ“¦ Check out the codebase
uses: actions/[email protected]

- name: πŸ› οΈ Setup PHP
uses: shivammathur/[email protected]
with:
php-version: ${{ matrix.php-version }}
extensions: none, ctype, dom, json, mbstring, simplexml, tokenizer, xml, xmlwriter, pdo, curl, fileinfo, pdo_mysql, sockets
ini-values: error_reporting=E_ALL
coverage: none
tools: phive

- name: πŸ› οΈ Setup problem matchers
run: echo "::add-matcher::${{ runner.tool_cache }}/php.json"

- name: πŸ€– Validate composer.json and composer.lock
run: make validate-composer

- name: πŸ” Get composer cache directory
uses: wayofdev/gh-actions/actions/composer/[email protected]
with:
working-directory: app

- name: ♻️ Restore cached dependencies installed with composer
uses: actions/[email protected]
with:
path: ${{ env.COMPOSER_CACHE_DIR }}
key: php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('composer.lock') }}
restore-keys: php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-

- name: πŸ“₯ Install "${{ matrix.dependencies }}" dependencies with composer
uses: wayofdev/gh-actions/actions/composer/[email protected]
with:
working-directory: app
dependencies: ${{ matrix.dependencies }}

- name: πŸ“₯ Install dependencies with phive
working-directory: app
env:
PHIVE_HOME: .phive
run: phive install --trust-gpg-keys 0xC00543248C87FB13,0x033E5F8D801A2F8D,0x47436587D82C4A39
shell: bash

- name: πŸ”¬ Run maglnet/composer-require-checker
working-directory: app
run: .phive/composer-require-checker check --ansi --config-file="$(pwd)/composer-require-checker.json" --verbose

deptrac:
timeout-minutes: 4
runs-on: ${{ matrix.os }}
concurrency:
cancel-in-progress: true
group: deptrac-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
strategy:
fail-fast: true
matrix:
os:
- ubuntu-latest
php-version:
- '8.3'
dependencies:
- locked
steps:
- name: πŸ“¦ Check out the codebase
uses: actions/[email protected]

- name: πŸ› οΈ Setup PHP
uses: shivammathur/[email protected]
with:
php-version: ${{ matrix.php-version }}
extensions: none, ctype, dom, json, mbstring, simplexml, tokenizer, xml, xmlwriter, pdo, curl, fileinfo, pdo_mysql, sockets
ini-values: error_reporting=E_ALL
coverage: none
tools: phive

- name: πŸ› οΈ Setup problem matchers
run: echo "::add-matcher::${{ runner.tool_cache }}/php.json"

- name: πŸ€– Validate composer.json and composer.lock
run: make validate-composer

- name: πŸ” Get composer cache directory
uses: wayofdev/gh-actions/actions/composer/[email protected]
with:
working-directory: app

- name: ♻️ Restore cached dependencies installed with composer
uses: actions/[email protected]
with:
path: ${{ env.COMPOSER_CACHE_DIR }}
key: php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('composer.lock') }}
restore-keys: php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-

- name: πŸ“₯ Install "${{ matrix.dependencies }}" dependencies with composer
uses: wayofdev/gh-actions/actions/composer/[email protected]
with:
working-directory: app
dependencies: ${{ matrix.dependencies }}

- name: πŸ“₯ Install dependencies with phive
working-directory: app
env:
PHIVE_HOME: .phive
run: phive install --trust-gpg-keys 0xC00543248C87FB13,0x033E5F8D801A2F8D,0x47436587D82C4A39
shell: bash

- name: πŸ”¬ Run deptrac
run: make lint-deptrac-ci
122 changes: 122 additions & 0 deletions .github/workflows/static-analysis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,122 @@
---

on: # yamllint disable-line rule:truthy
pull_request:
branches:
- master
- develop

name: πŸ” Static analysis

env:
# Disable docker support in Makefile
APP_RUNNER: 'cd app &&'

jobs:
phpstan:
timeout-minutes: 4
runs-on: ${{ matrix.os }}
concurrency:
cancel-in-progress: true
group: phpstan-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
strategy:
fail-fast: true
matrix:
os:
- ubuntu-latest
php-version:
- '8.3'
dependencies:
- locked
steps:
- name: πŸ“¦ Check out the codebase
uses: actions/[email protected]

- name: πŸ› οΈ Setup PHP
uses: shivammathur/[email protected]
with:
php-version: ${{ matrix.php-version }}
extensions: none, ctype, dom, json, mbstring, simplexml, tokenizer, xml, xmlwriter, pdo, curl, fileinfo, pdo_mysql, opcache, pcntl, posix, sockets
ini-values: error_reporting=E_ALL
coverage: none

- name: πŸ› οΈ Setup problem matchers
run: echo "::add-matcher::${{ runner.tool_cache }}/php.json"

- name: πŸ€– Validate composer.json and composer.lock
run: make validate-composer

- name: πŸ” Get composer cache directory
uses: wayofdev/gh-actions/actions/composer/[email protected]
with:
working-directory: app

- name: ♻️ Restore cached dependencies installed with composer
uses: actions/[email protected]
with:
path: ${{ env.COMPOSER_CACHE_DIR }}
key: php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('composer.lock') }}
restore-keys: php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-

- name: πŸ“₯ Install "${{ matrix.dependencies }}" dependencies with composer
uses: wayofdev/gh-actions/actions/composer/[email protected]
with:
working-directory: app
dependencies: ${{ matrix.dependencies }}

- name: πŸ” Run static analysis using phpstan/phpstan
run: make lint-stan-ci

psalm:
timeout-minutes: 4
runs-on: ${{ matrix.os }}
concurrency:
cancel-in-progress: true
group: psalm-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
strategy:
fail-fast: true
matrix:
os:
- ubuntu-latest
php-version:
- '8.3'
dependencies:
- locked
steps:
- name: πŸ“¦ Check out the codebase
uses: actions/[email protected]

- name: πŸ› οΈ Setup PHP
uses: shivammathur/[email protected]
with:
php-version: ${{ matrix.php-version }}
extensions: none, ctype, dom, json, mbstring, simplexml, tokenizer, xml, xmlwriter, pdo, pdo_mysql, curl, fileinfo, opcache, pcntl, posix, sockets
ini-values: error_reporting=E_ALL
coverage: xdebug

- name: πŸ› οΈ Setup problem matchers
run: echo "::add-matcher::${{ runner.tool_cache }}/php.json"

- name: πŸ€– Validate composer.json and composer.lock
run: make validate-composer

- name: πŸ” Get composer cache directory
uses: wayofdev/gh-actions/actions/composer/[email protected]
with:
working-directory: app

- name: ♻️ Restore cached dependencies installed with composer
uses: actions/[email protected]
with:
path: ${{ env.COMPOSER_CACHE_DIR }}
key: php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('composer.lock') }}
restore-keys: php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-

- name: πŸ“₯ Install "${{ matrix.dependencies }}" dependencies with composer
uses: wayofdev/gh-actions/actions/composer/[email protected]
with:
working-directory: app
dependencies: ${{ matrix.dependencies }}

- name: πŸ” Run static analysis using vimeo/psalm
run: make lint-psalm-ci
Loading
Loading