mirror of
https://github.com/archtechx/jobpipeline.git
synced 2025-12-12 13:14:04 +00:00
44 lines
1.2 KiB
YAML
44 lines
1.2 KiB
YAML
name: CI
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
phpunit:
|
|
name: Tests (PHPUnit) L${{ matrix.laravel }}
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
laravel: [6, 8, 9]
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Setup PHP
|
|
uses: shivammathur/setup-php@v2
|
|
with:
|
|
php-version: '8.0'
|
|
|
|
- name: Start Redis
|
|
uses: supercharge/redis-github-action@1.1.0
|
|
|
|
- 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)
|