Skip to content

Commit 4bf932d

Browse files
authored
Merge pull request #4 from 8fold/accept-buildable
update: Dependencies
2 parents c5873f1 + c255e3a commit 4bf932d

File tree

3 files changed

+159
-493
lines changed

3 files changed

+159
-493
lines changed

.github/workflows/php81.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: PHP 8.1
2+
3+
on:
4+
push:
5+
branches: [main]
6+
pull_request:
7+
branches: [main]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Checkout
14+
uses: actions/checkout@v2
15+
16+
- name: Setup PHP Action
17+
uses: shivammathur/[email protected]
18+
with:
19+
php-version: '8.1'
20+
21+
- name: Validate composer.json and composer.lock
22+
run: composer validate
23+
24+
- name: Install dependencies
25+
run: composer install --prefer-dist --no-progress
26+
27+
- name: Run style check
28+
run: composer run style
29+
30+
- name: Run static analyzer
31+
run: composer run stan
32+
33+
- name: Run tests
34+
run: composer run test

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@
1111
],
1212
"require": {
1313
"php": "^8.0",
14-
"8fold/php-xml-builder": "^1.0.0"
14+
"8fold/php-xml-builder": "^1.0"
1515
},
1616
"require-dev": {
17-
"phpstan/phpstan": "^1.2.0",
17+
"phpstan/phpstan": "^1.2",
1818
"phpunit/phpunit": "^9.5",
1919
"squizlabs/php_codesniffer": "^3.6"
2020
},

0 commit comments

Comments
 (0)