diff --git a/.github/workflows/php85.yml b/.github/workflows/php85.yml index bb26157..7ac8c7e 100644 --- a/.github/workflows/php85.yml +++ b/.github/workflows/php85.yml @@ -1,34 +1,34 @@ name: PHP 8.5 on: - push: - branches: [main] - pull_request: - branches: [main] + push: + branches: [main] + pull_request: + branches: [main] jobs: - build: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4.2.2 + build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4.2.2 - - name: Setup PHP Action - uses: shivammathur/setup-php@2.33.0 - with: - php-version: '8.5' + - name: Setup PHP Action + uses: shivammathur/setup-php@2.33.0 + with: + php-version: '8.5' - - name: Validate composer.json and composer.lock - run: composer validate + - name: Validate composer.json and composer.lock + run: composer validate - - name: Install dependencies - run: composer install --prefer-dist --no-progress + - name: Install dependencies + run: composer install --prefer-dist --no-progress - - name: Run style check - run: composer run style + - name: Run style check + run: composer run style - - name: Run static analyzer - run: composer run stan + - name: Run static analyzer + run: composer run stan - - name: Run tests - run: composer run test + - name: Run tests + run: composer run test