Skip to content

Commit

Permalink
Implement CodeCov in CircleCi
Browse files Browse the repository at this point in the history
  • Loading branch information
iwasherefirst2 committed Jan 13, 2022
1 parent c72028c commit 071df9d
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 3 deletions.
17 changes: 15 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# PHP CircleCI 2.0 configuration file
# See: https://circleci.com/docs/2.0/language-php/
version: 2
version: 2.1

orbs:
codecov: codecov/[email protected]

# Define a job to be invoked later in a workflow.
# See: https://circleci.com/docs/2.0/configuration-reference/#jobs
Expand Down Expand Up @@ -45,4 +48,14 @@ jobs:
- ./vendor

# run tests with phpunit or codecept
- run: ./vendor/bin/phpunit
#- run: ./vendor/bin/phpunit

- run:
name: "Run tests"
command: phpdbg -qrr vendor/bin/phpunit --coverage-html build/coverage-report
- store_artifacts:
path: build/coverage-report
- codecov/upload:
file: build/coverage-report


2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

![Mail image](https://miro.medium.com/max/640/1*XAhO69eFPH6p32VlylUCaw.png)

[![Build Status](https://travis-ci.com/iwasherefirst2/laravel-multimail.svg?branch=master)](https://travis-ci.com/iwasherefirst2/laravel-multimail)
[![CircleCI](https://circleci.com/gh/iwasherefirst2/laravel-multimail/tree/master.svg?style=svg)](https://circleci.com/gh/iwasherefirst2/laravel-multimail/tree/master)
[![codecov](https://codecov.io/gh/iwasherefirst2/laravel-multimail/branch/master/graph/badge.svg?token=3X6ZVRR5EQ)](https://codecov.io/gh/iwasherefirst2/laravel-multimail)

This package helps you to send mails from your Laravel application from multiple email accounts.
Expand Down

0 comments on commit 071df9d

Please sign in to comment.