Skip to content

Commit 671c0e2

Browse files
committed
cleanup build matrix and adjust to semantic branch naming
1 parent 3595192 commit 671c0e2

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

.github/workflows/test-application.yaml

+8-4
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,14 @@ on:
44
pull_request:
55
push:
66
branches:
7-
- 'master'
7+
- '[0-9]+.x'
8+
- '[0-9]+.[0-9]+'
9+
- '[0-9]+.[0-9]+.x'
810

911
jobs:
1012
test:
1113
name: 'PHP ${{ matrix.php-version }} ${{ matrix.dependencies }}'
12-
runs-on: ubuntu-20.04
14+
runs-on: ubuntu-latest
1315
env:
1416
SYMFONY_DEPRECATIONS_HELPER: weak
1517

@@ -23,10 +25,12 @@ jobs:
2325
- php-version: '7.4'
2426
- php-version: '8.0'
2527
- php-version: '8.1'
28+
- php-version: '8.2'
29+
- php-version: '8.3'
2630

2731
steps:
2832
- name: Checkout project
29-
uses: actions/checkout@v2
33+
uses: actions/checkout@v4
3034

3135
- name: Install and configure PHP
3236
uses: shivammathur/setup-php@v2
@@ -35,7 +39,7 @@ jobs:
3539
tools: 'composer:v2'
3640

3741
- name: Install dependencies with Composer
38-
uses: ramsey/composer-install@v1
42+
uses: ramsey/composer-install@v3
3943
with:
4044
dependency-versions: ${{ matrix.dependencies }}
4145
composer-options: --prefer-dist

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ PHPCR Migrations
22
================
33

44
[![Build
5-
Status](https://travis-ci.org/phpcr/phpcr-migrations.svg?branch=master)](https://travis-ci.org/phpcr/phpcr-migrations)
5+
Status](https://github.com/phpcr/phpcr-migrations/actions/workflows/test-application.yaml/badge.svg)](https://github.com/phpcr/phpcr-migrations/actions/workflows/test-application.yaml)
66

77
Migrations library for PHPCR influenced by [Doctrine
88
migrations](https://github.com/doctrine/migrations).

composer.json

-3
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,5 @@
2828
"psr-4": {
2929
"PHPCR\\Migrations\\Tests\\": "tests"
3030
}
31-
},
32-
"extra": {
33-
"branch-alias": {"dev-master": "1.x-dev" }
3431
}
3532
}

0 commit comments

Comments
 (0)