Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 23 additions & 23 deletions .github/workflows/php85.yml
Original file line number Diff line number Diff line change
@@ -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
Loading