multiple behat outputs #195
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
name: Validations | |
on: | |
push: | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
lint-project: | |
name: "Lint project" | |
runs-on: | |
group: organization/Default | |
strategy: | |
max-parallel: 1 | |
fail-fast: true | |
steps: | |
- name: Checkout project | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Checkout actions | |
uses: actions/checkout@v4 | |
with: | |
repository: pubnub/client-engineering-deployment-tools | |
ref: v1 | |
token: ${{ secrets.GH_TOKEN }} | |
path: .github/.release/actions | |
- name: Determine composer cache directory | |
id: composer-cache-dir | |
run: echo "dir=$(composer config cache-dir)" >> $GITHUB_OUTPUT | |
- name: Cache Composer | |
uses: actions/cache@v4 | |
with: | |
path: | | |
"${{ steps.composer-cache-dir.outputs.dir }}" | |
${{ github.workspace }}/vendor | |
key: ${{ runner.os }}-composer-8.3-${{ hashFiles('**/composer.json') }} | |
restore-keys: | | |
${{ runner.os }}-composer- | |
- name: Setup PHP 8.3 | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.3 | |
tools: composer | |
coverage: none | |
- name: Setup dependencies | |
run: | | |
composer self-update && composer --version | |
composer install --prefer-dist --dev | |
- name: Run PHPStan | |
run: vendor/bin/phpstan analyze --memory-limit 256M | |
- name: Run phpcs on changed files | |
run: git diff --name-only --diff-filter=d origin/master HEAD | grep -E '\.php$' | xargs vendor/bin/phpcs --standard=PSR12 | |
- name: Cancel workflow runs for commit on error | |
if: failure() | |
uses: ./.github/.release/actions/actions/utils/fast-jobs-failure | |
pubnub-yml: | |
name: "Validate .pubnub.yml" | |
runs-on: | |
group: organization/Default | |
steps: | |
- name: Checkout project | |
uses: actions/checkout@v4 | |
- name: Checkout validator action | |
uses: actions/checkout@v4 | |
with: | |
repository: pubnub/client-engineering-deployment-tools | |
ref: v1 | |
token: ${{ secrets.GH_TOKEN }} | |
path: .github/.release/actions | |
- name: "Run '.pubnub.yml' file validation" | |
uses: ./.github/.release/actions/actions/validators/pubnub-yml | |
with: | |
token: ${{ secrets.GH_TOKEN }} | |
- name: Cancel workflow runs for commit on error | |
if: failure() | |
uses: ./.github/.release/actions/actions/utils/fast-jobs-failure | |
all-validations: | |
name: Validations | |
needs: [pubnub-yml, lint-project] | |
runs-on: | |
group: organization/Default | |
steps: | |
- name: Validations summary | |
run: echo -e "\033[38;2;95;215;0m\033[1mAll validations passed" |