Skip to content

Commit

Permalink
Merge branch 'release/1.1.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
aronnebrivio committed Apr 25, 2021
2 parents 7969b95 + dbbbb17 commit a33d4e0
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,15 @@ jobs:
env:
DB_PORT: ${{ job.services.mysql.ports['3306'] }}
- name: Run PHPUnit
run: vendor/bin/phpunit
run: vendor/bin/phpunit --coverage-clover=coverage.xml
env:
DB_PORT: ${{ job.services.mysql.ports['3306'] }}
REDIS_PORT: ${{ job.services.redis.ports['6379'] }}
XDEBUG_MODE: coverage
- name: "Send code coverage report to Codecov.io"
env:
CODECOV_TOKEN: "${{ secrets.CODECOV_TOKEN }}"
run: "bash <(curl -s https://codecov.io/bash) || true"

deploy:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Blog backend
[![CI/CD](https://github.com/aronnebrivio/a-lumen-blog/actions/workflows/ci-cd.yml/badge.svg)](https://github.com/aronnebrivio/a-lumen-blog/actions/workflows/ci-cd.yml)
[![Coverage Status](https://coveralls.io/repos/github/aronnebrivio/a-lumen-blog/badge.svg?branch=master)](https://coveralls.io/github/aronnebrivio/a-lumen-blog?branch=master)
[![codecov](https://codecov.io/gh/aronnebrivio/a-lumen-blog/branch/master/graph/badge.svg?token=WRQFZ18B0F)](https://codecov.io/gh/aronnebrivio/a-lumen-blog)
[![LICENSE](https://img.shields.io/badge/license-MIT-gold.svg)](https://github.com/aronnebrivio/aronnebrivio.github.io/blob/master/LICENSE)

[Lumen](https://lumen.laravel.com/) project providing an API to a blog environment, with Users, Posts and Comments.
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"laravel",
"lumen"
],
"version": "1.1.2",
"version": "1.1.3",
"license": "MIT",
"type": "project",
"require": {
Expand Down
2 changes: 1 addition & 1 deletion routes/web.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
});

$router->get('version', function () {
return response('1.1.2', 200);
return response('1.1.3', 200);
});

$router->group(['prefix' => 'auth'], function () use ($router) {
Expand Down

0 comments on commit a33d4e0

Please sign in to comment.