Remove sidebar_title_display
and use header_title_display
to disp…
#1731
Workflow file for this run
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: Linting | |
on: [push] | |
jobs: | |
lint: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Install PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.1 | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Install PHP dependencies | |
run: composer install --no-interaction --no-progress --no-scripts | |
- name: Run PHP CodeSniffer | |
run: composer lint |