Skip to content

Commit 22a1a0c

Browse files
committed
support fot php 8.4 in CI
1 parent 8e28be2 commit 22a1a0c

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/ci.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,23 @@ on:
66
- "**"
77

88
jobs:
9+
php84:
10+
name: "php 8.4"
11+
runs-on: ubuntu-latest
12+
container: "nofutur3/php-tests:8.4"
13+
steps:
14+
- name: Checkout repository
15+
uses: actions/checkout@v4
16+
17+
- name: Install dependencies
18+
run: composer install
19+
20+
- name: Run static analysis
21+
run: composer stan
22+
23+
- name: Run tests
24+
run: composer test
25+
926
php83:
1027
name: "php 8.3"
1128
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)