Compare commits

..

No commits in common. "master" and "5.0.0" have entirely different histories.

3 changed files with 27 additions and 13 deletions

View file

@ -11,16 +11,9 @@ on:
- created
jobs:
unit_tests:
name: Unit tests
unit_tests_80:
name: Unit tests with PHP 8.0
runs-on: ubuntu-latest
strategy:
matrix:
include:
- php: 8.0
coveralls: true
- php: 8.1
coveralls: false
steps:
- name: Checkout
uses: actions/checkout@v2
@ -32,7 +25,7 @@ jobs:
command: install
args: --ignore-platform-reqs --no-scripts
version: 2
php_version: ${{ matrix.php }}
php_version: 8.0
- name: Run tests
env:
XDEBUG_MODE: coverage
@ -40,7 +33,28 @@ jobs:
mkdir .logs
./vendor/bin/phpunit --coverage-clover build/logs/coverage.xml
- name: Run Coveralls
if: ${{ matrix.coveralls }}
env:
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: ./vendor/bin/php-coveralls -v --coverage_clover build/logs/coverage.xml
unit_tests_81:
name: Unit tests with PHP 8.1
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Composer install
uses: php-actions/composer@v5
with:
command: install
args: --ignore-platform-reqs --no-scripts
version: 2
php_version: 8.1
- name: Run tests
env:
XDEBUG_MODE: coverage
run: |
mkdir .logs
./vendor/bin/phpunit --coverage-clover build/logs/coverage.xml

View file

@ -9,7 +9,7 @@
[![License](https://img.shields.io/packagist/l/andres-montanez/magallanes.svg)](https://packagist.org/packages/andres-montanez/magallanes)
### What's Magallanes?
**Magallanes** is a deployment tool for made with PHP for PHP applications; it's quite simple to use and manage. For more information and documentation please visit [magephp.com](https://www.magephp.com/)
**Magallanes** is a deployment tool for made with PHP for PHP applications; it's quite simple to use and manage. For more information and documentation please visit https://magephp.com
### Installing
Simply add the following dependency to your projects composer.json file:

View file

@ -44,7 +44,7 @@
"extra": {
"branch-alias": {
"dev-master": "5.0.x-dev",
"dev-galactica": "5.x-dev"
"dev-discovery-one": "5.x-dev"
}
}
}