Skip to content

Commit ed1ae97

Browse files
authored
Merge pull request #29 from juanmiguelbesada/patch-1
2 parents dc5379a + 3ef4f0a commit ed1ae97

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,18 @@
11
name: CI
22

3-
on: [push]
3+
on:
4+
push:
5+
branches:
6+
- master
7+
pull_request:
48

59
jobs:
610
build:
711
runs-on: ${{ matrix.os }}
812
strategy:
913
matrix:
1014
os: [ubuntu-latest, windows-latest, macOS-latest]
11-
php-versions: ['7.4']
15+
php-versions: ['7.4', '8.0']
1216

1317
name: Test on ${{ matrix.os }} with PHP ${{ matrix.php-versions }}
1418
steps:

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
}
1313
],
1414
"require": {
15-
"php": ">=7.4"
15+
"php": "^7.4||^8.0"
1616
},
1717
"require-dev": {
1818
"squizlabs/php_codesniffer": "^3.5",

0 commit comments

Comments
 (0)