Skip to content

Commit b164a4f

Browse files
committed
add: PHP 8.2 verification
1 parent aed9219 commit b164a4f

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

.github/workflows/php82.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.2'
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

0 commit comments

Comments
 (0)