Skip to content

Commit ed0ecf1

Browse files
authored
Merge pull request #651 from barbushin/Fix-workflow-pipeline
Fix workflow pipeline
2 parents b548250 + 09ada1a commit ed0ecf1

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/php_code_coverage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: PHP Code Coverage
22

33
on:
44
push:
5-
branches: [ develop ]
5+
branches:
6+
- master
67
pull_request:
7-
branches: [ develop ]
88

99
jobs:
1010
coverage:

.github/workflows/php_static_analysis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: PHP Static Analysis & Tests
22

33
on:
44
push:
5-
branches: [ develop, 'issue/592' ]
5+
branches:
6+
- master
67
pull_request:
7-
branches: [ develop ]
88

99
jobs:
1010
static-analysis:

.github/workflows/php_unit_tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: PHP Unit Tests
22

33
on:
44
push:
5-
branches: [ develop ]
5+
branches:
6+
- master
67
pull_request:
7-
branches: [ develop ]
88

99
jobs:
1010
phpunit:

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
[![Software License](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square)](LICENSE)
66
[![Packagist](https://img.shields.io/packagist/dt/php-imap/php-imap.svg?style=flat-square)](https://packagist.org/packages/php-imap/php-imap)
77

8-
[![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)
9-
[![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)
10-
[![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)
8+
[![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)
9+
[![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)
10+
[![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)
1111

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

0 commit comments

Comments
 (0)