Skip to content

Commit

Permalink
Add CI for normalize
Browse files Browse the repository at this point in the history
  • Loading branch information
olssonm committed Aug 12, 2024
1 parent 78386be commit 782d82b
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 1 deletion.
30 changes: 29 additions & 1 deletion .github/workflows/test.yml → .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,35 @@ name: Run tests
on: [push, pull_request]

jobs:
php-tests:
coding-standards:
name: "Coding Standards"

runs-on: "ubuntu-latest"

strategy:
matrix:
php:
- "8.3"

steps:
- name: "Checkout"
uses: "actions/[email protected]"

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}

- name: Update composer
run: composer self-update --2

- name: "Install dependencies"
run: "composer install --no-interaction --no-progress"

- name: "Run normalize"
run: "composer normalize --dry-run"

tests:
runs-on: ${{ matrix.os }}

strategy:
Expand Down
File renamed without changes.

0 comments on commit 782d82b

Please sign in to comment.