Skip to content

Commit

Permalink
Merge pull request #651 from barbushin/Fix-workflow-pipeline
Browse files Browse the repository at this point in the history
Fix workflow pipeline
  • Loading branch information
Sebbo94BY authored Jan 6, 2022
2 parents b548250 + 09ada1a commit ed0ecf1
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/php_code_coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: PHP Code Coverage

on:
push:
branches: [ develop ]
branches:
- master
pull_request:
branches: [ develop ]

jobs:
coverage:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/php_static_analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: PHP Static Analysis & Tests

on:
push:
branches: [ develop, 'issue/592' ]
branches:
- master
pull_request:
branches: [ develop ]

jobs:
static-analysis:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/php_unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: PHP Unit Tests

on:
push:
branches: [ develop ]
branches:
- master
pull_request:
branches: [ develop ]

jobs:
phpunit:
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
[![Software License](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square)](LICENSE)
[![Packagist](https://img.shields.io/packagist/dt/php-imap/php-imap.svg?style=flat-square)](https://packagist.org/packages/php-imap/php-imap)

[![CI PHP Unit Tests](https://github.com/barbushin/php-imap/actions/workflows/php_unit_tests.yml/badge.svg)](https://github.com/barbushin/php-imap/actions/workflows/php_unit_tests.yml)
[![CI PHP Static Analysis](https://github.com/barbushin/php-imap/actions/workflows/php_static_analysis.yml/badge.svg)](https://github.com/barbushin/php-imap/actions/workflows/php_static_analysis.yml)
[![CI PHP Code Coverage](https://github.com/barbushin/php-imap/actions/workflows/php_code_coverage.yml/badge.svg)](https://github.com/barbushin/php-imap/actions/workflows/php_code_coverage.yml)
[![CI PHP Unit Tests](https://github.com/barbushin/php-imap/actions/workflows/php_unit_tests.yml/badge.svg?branch=master)](https://github.com/barbushin/php-imap/actions/workflows/php_unit_tests.yml)
[![CI PHP Static Analysis](https://github.com/barbushin/php-imap/actions/workflows/php_static_analysis.yml/badge.svg?branch=master)](https://github.com/barbushin/php-imap/actions/workflows/php_static_analysis.yml)
[![CI PHP Code Coverage](https://github.com/barbushin/php-imap/actions/workflows/php_code_coverage.yml/badge.svg?branch=master)](https://github.com/barbushin/php-imap/actions/workflows/php_code_coverage.yml)

[![Maintainability](https://api.codeclimate.com/v1/badges/02f72a4fd695cb7e2976/maintainability)](https://codeclimate.com/github/barbushin/php-imap/maintainability)
[![Test Coverage](https://api.codeclimate.com/v1/badges/02f72a4fd695cb7e2976/test_coverage)](https://codeclimate.com/github/barbushin/php-imap/test_coverage)
Expand Down

0 comments on commit ed0ecf1

Please sign in to comment.