Fix post views bugs #44
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: Quality | |
on: | |
push: | |
branches: | |
- main | |
- develop | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
pint: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: ๐ Checkout | |
uses: actions/checkout@v4 | |
- name: ๐ช Setup | |
uses: ./.github/actions/setup | |
- name: ๐ฎ Install Composer Dependencies | |
run: composer install --no-progress --no-interaction --prefer-dist --optimize-autoloader | |
- name: ๐ต๏ธโโ๏ธ Run Laravel Pint | |
run: composer lint -- --test | |
phpstan: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: ๐ Checkout | |
uses: actions/checkout@v4 | |
- name: ๐ช Setup | |
uses: ./.github/actions/setup | |
- name: ๐ฎ Install Composer Dependencies | |
run: composer install --no-progress --no-interaction --prefer-dist --optimize-autoloader | |
- name: ๐ต๏ธโโ๏ธ Run PHPStan | |
run: composer test:phpstan -- --ansi --no-interaction --no-progress --error-format=github | |
composer: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: ๐ Checkout | |
uses: actions/checkout@v4 | |
- name: ๐ช Setup | |
uses: ./.github/actions/setup | |
- name: ๐ต๏ธโโ๏ธ Run Composer Validate | |
run: composer validate | |
- name: ๐ต๏ธโโ๏ธ Run Composer Audit | |
run: composer audit |