Skip to content

Commit d9aaa3c

Browse files
authored
Merge pull request #181 from unzerdev/CC-697/switch-to-trunk-based-development
[CC-697] Adjust workflows to new branch structure.
2 parents 818cb1f + a77dc4f commit d9aaa3c

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

.github/workflows/integration-tests.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@ name: integration tests
33
on:
44
push:
55
branches:
6-
- 'master'
7-
- 'develop'
6+
- 'main'
87
workflow_dispatch:
98

109
jobs:

.github/workflows/unit-tests.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,14 @@ name: unit tests
33
on:
44
pull_request:
55
branches:
6-
- 'master'
7-
- 'develop'
8-
- 'feature/**'
6+
- 'main'
97

108
jobs:
119
build:
1210
runs-on: ubuntu-latest
1311
strategy:
1412
matrix:
15-
php: ['7.4', '8.0', '8.1', '8.2', '8.3']
13+
php: [ '7.4', '8.0', '8.1', '8.2', '8.3' ]
1614
name: PHP ${{ matrix.php }} unit tests
1715
steps:
1816
- uses: actions/checkout@v3

0 commit comments

Comments
 (0)