Skip to content

Introduce flag for adding noindex tag to inactive group profile pages. #420

Introduce flag for adding noindex tag to inactive group profile pages.

Introduce flag for adding noindex tag to inactive group profile pages. #420

Workflow file for this run

name: OpenLab PHP Lint
on:
push:
paths:
- '**.php'
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout project
uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.0'
coverage: none
tools: composer, cs2pr
- name: Get Composer cache directory
id: composer-cache
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
- name: Setup cache
uses: pat-s/always-upload-cache@v1.1.4
with:
path: ${{ steps.composer-cache.outputs.dir }}
# Use the hash of composer.json as the key for your cache if you do not commit composer.lock.
# key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: ${{ runner.os }}-composer-
- name: Install dependencies
run: composer install --prefer-dist --no-suggest --no-progress && composer require php-parallel-lint/php-parallel-lint
- name: Run PHP linter
run: |
chmod +x ./developer/lint-php/lint-php.sh
./vendor/bin/parallel-lint $(./developer/lint-php/lint-php.sh) .