mirror of
https://github.com/kevin-DL/LaravelShoppingcart.git
synced 2026-01-11 18:54:33 +00:00
Merge pull request #108 from olegbespalov/master
Migrating to the GitHub Actions
This commit is contained in:
56
.github/workflows/php.yml
vendored
Normal file
56
.github/workflows/php.yml
vendored
Normal file
@@ -0,0 +1,56 @@
|
||||
name: CI Code Checks
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
push:
|
||||
branches: [ master ]
|
||||
|
||||
jobs:
|
||||
run:
|
||||
runs-on: ubuntu-18.04
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
php-versions: ['7.1', '7.2', '7.3', '7.4']
|
||||
env:
|
||||
PHP_VERSION: ${{ matrix.php-versions }}
|
||||
name: PHP ${{ matrix.php-versions }}
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Setup PHP
|
||||
uses: shivammathur/setup-php@v2
|
||||
with:
|
||||
php-version: ${{ matrix.php-versions }}
|
||||
env:
|
||||
runner: ubuntu-18.04
|
||||
|
||||
- name: Validate composer.json and composer.lock
|
||||
run: composer validate
|
||||
|
||||
- name: Get composer cache directory
|
||||
id: composercache
|
||||
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
|
||||
|
||||
- name: Cache Composer packages
|
||||
id: composer-cache
|
||||
uses: actions/cache@v2
|
||||
with:
|
||||
path: ${{ steps.composercache.outputs.dir }}
|
||||
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
|
||||
restore-keys: ${{ runner.os }}-composer-
|
||||
|
||||
- name: Install composer packages
|
||||
run: composer install --prefer-dist --no-interaction
|
||||
|
||||
- name: Tests Coverage
|
||||
run: vendor/bin/phpunit --coverage-clover=coverage.xml
|
||||
|
||||
- name: Upload coverage to Codecov
|
||||
uses: codecov/codecov-action@v1
|
||||
with:
|
||||
file: ./coverage.xml
|
||||
flags: unittests
|
||||
env_vars: PHP_VERSION
|
||||
fail_ci_if_error: true
|
||||
21
.travis.yml
21
.travis.yml
@@ -1,21 +0,0 @@
|
||||
language: php
|
||||
|
||||
php:
|
||||
- 7.1
|
||||
- 7.2
|
||||
|
||||
before_script:
|
||||
- composer self-update
|
||||
- composer install --prefer-source --no-interaction
|
||||
|
||||
script:
|
||||
- vendor/bin/phpunit --coverage-clover=coverage.xml
|
||||
|
||||
after_success:
|
||||
# Submit coverage report to https://codecov.io
|
||||
- bash <(curl -s https://codecov.io/bash)
|
||||
|
||||
# You can delete the cache using travis-ci web interface
|
||||
cache:
|
||||
directories:
|
||||
- $HOME/.composer/cache
|
||||
@@ -1,5 +1,5 @@
|
||||
## LaravelShoppingcart
|
||||
[](https://travis-ci.org/bumbummen99/LaravelShoppingcart)
|
||||

|
||||
[](https://codecov.io/gh/bumbummen99/LaravelShoppingcart)
|
||||
[](https://styleci.io/repos/152610878)
|
||||
[](https://packagist.org/packages/bumbummen99/shoppingcart)
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
## LaravelShoppingcart
|
||||
[](https://travis-ci.org/bumbummen99/LaravelShoppingcart)
|
||||

|
||||
[](https://codecov.io/gh/bumbummen99/LaravelShoppingcart)
|
||||
[](https://styleci.io/repos/152610878)
|
||||
[](https://packagist.org/packages/bumbummen99/shoppingcart)
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
## LaravelShoppingcart
|
||||
[](https://travis-ci.org/bumbummen99/LaravelShoppingcart)
|
||||

|
||||
[](https://codecov.io/gh/bumbummen99/LaravelShoppingcart)
|
||||
[](https://styleci.io/repos/152610878)
|
||||
[](https://packagist.org/packages/bumbummen99/shoppingcart)
|
||||
|
||||
Reference in New Issue
Block a user