mirror of
https://github.com/archtechx/gloss.git
synced 2025-12-12 11:14:04 +00:00
61 lines
1.5 KiB
YAML
61 lines
1.5 KiB
YAML
name: CI
|
|
|
|
env:
|
|
COMPOSE_INTERACTIVE_NO_CLI: 1
|
|
PHP_CS_FIXER_IGNORE_ENV: 1
|
|
LEAN_MYSQL_PORT: 3307
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
phpunit:
|
|
strategy:
|
|
matrix:
|
|
laravel: [6, 8]
|
|
|
|
name: Tests (PHPUnit)
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Install composer dependencies
|
|
run: composer require "laravel/framework:^${{matrix.laravel}}.0.0"
|
|
- name: Run tests
|
|
run: vendor/bin/phpunit
|
|
|
|
phpstan:
|
|
name: Static analysis (PHPStan)
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Install composer dependencies
|
|
run: composer install
|
|
- name: Run phpstan
|
|
run: vendor/bin/phpstan analyse
|
|
|
|
php-cs-fixer:
|
|
name: Code style (php-cs-fixer)
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Setup PHP
|
|
uses: shivammathur/setup-php@v2
|
|
with:
|
|
php-version: '8.0'
|
|
env:
|
|
update: true
|
|
- 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.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)
|