Skip to content

Add CI for normalize #1

Add CI for normalize

Add CI for normalize #1

Workflow file for this run

name: Run tests
on: [push, pull_request]
jobs:
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:
matrix:
os: [ubuntu-latest,ubuntu-20.04]
php: [8.1,8.2,8.3]
laravel: [11.*, 10.*]
dependency-version: [prefer-stable]
exclude:
- laravel: 11.*
php: 8.1
name: ${{ matrix.os }}, PHP ${{ matrix.php }} / Laravel ${{ matrix.laravel }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- 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 require "laravel/framework:${{ matrix.laravel }}" --no-interaction --no-progress
- name: Execute tests
run: composer test