mirror of
https://github.com/archtechx/virtualcolumn.git
synced 2025-12-12 11:34:03 +00:00
50 lines
1.2 KiB
YAML
50 lines
1.2 KiB
YAML
name: run-tests
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
tests:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: true
|
|
matrix:
|
|
include:
|
|
- laravel: 10
|
|
php: 8.1
|
|
- laravel: 11
|
|
php: 8.3
|
|
- laravel: 12
|
|
php: 8.4
|
|
|
|
name: Tests (PHPUnit) - L${{ matrix.laravel }}
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Setup PHP
|
|
uses: shivammathur/setup-php@v2
|
|
with:
|
|
php-version: ${{matrix.php}}
|
|
|
|
- name: Install dependencies
|
|
run: composer require "laravel/framework:^${{matrix.laravel}}.0"
|
|
- name: Run tests
|
|
run: vendor/bin/phpunit
|
|
|
|
php-cs-fixer:
|
|
name: Code style (php-cs-fixer)
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Install php-cs-fixer
|
|
run: composer global require friendsofphp/php-cs-fixer
|
|
- name: Run php-cs-fixer
|
|
run: $HOME/.composer/vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.php
|
|
- name: Commit changes from php-cs-fixer
|
|
uses: EndBug/add-and-commit@v5
|
|
with:
|
|
author_name: Samuel Štancl
|
|
author_email: samuel.stancl@gmail.com
|
|
message: Fix code style (php-cs-fixer)
|