This repository has been archived by the owner on Sep 15, 2024. It is now read-only.
Merge pull request #28 from dew-serverless/deprecation #11
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: Static Analysis | |
on: | |
push: | |
pull_request: | |
jobs: | |
static: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.3' | |
tools: composer:v2 | |
coverage: none | |
- name: Install Dependencies | |
run: composer update --prefer-stable --no-interaction --no-progress --ansi | |
- name: Run Style Checks | |
run: composer test:style | |
- name: Run Refactor Checks | |
run: composer test:refactor | |
- name: Run Lint Checks | |
run: composer test:static |