mirror of
https://github.com/archtechx/virtualcolumn.git
synced 2025-12-12 16:34:04 +00:00
* Add L10 support * Update PHP version in ci.yml * Update ci.yml * Revert ci.yml changes * Migrate PHPUnit XML config using "--migrate-configuration" * Update phpunit.xml (delete cacheDirectory, use backupStaticAttributes instead of backupStaticProperties) * Delete backupStaticAttributes * Add PHP version matrix * Use ci.yml from #12 * Correct Laravel matrix versions * Revert ci.yml changes * Use multiple PHP versions * Update ci.yml * Don't use PHP 8 with Laravel 10 in CI * Update ci.yml * Remove L6 and L8 support * Use single PHP version in CI * Update ci.yml * Change matrix in ci.yml * swap laravel 9 & 10 * Update README.md --------- Co-authored-by: Samuel Štancl <samuel@archte.ch>
48 lines
1.2 KiB
YAML
48 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: 9
|
|
php: 8.0
|
|
- laravel: 10
|
|
php: 8.1
|
|
|
|
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)
|