Skip to content

test: Added new tests in ArchTest #34

test: Added new tests in ArchTest

test: Added new tests in ArchTest #34

Workflow file for this run

name: styles
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
php: [8.2, 8.3]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
- name: Install dependencies
run: composer update --no-interaction --no-progress --ansi
- name: Run Pint & PHPStan
run: composer run styles