Add support for dropping views in MSSQL server when running migrate/fresh #245
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: lint | |
on: [push, pull_request] | |
jobs: | |
phpcs: | |
runs-on: ubuntu-latest | |
name: PHP_CodeSniffer | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.2' | |
tools: cs2pr | |
- name: Install dependencies | |
run: composer install --prefer-dist | |
- name: Run phpcs | |
run: vendor/bin/phpcs -q --report=checkstyle framework/ | cs2pr |