Skip to content

Commit 83a491d

Browse files
committed
fix: use correct php version for ci
1 parent 89e7f49 commit 83a491d

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -209,16 +209,15 @@ jobs:
209209
body: comment
210210
});
211211
}
212-
213212
test:
214213
runs-on: ubuntu-latest
215214
steps:
216215
- uses: actions/checkout@v3
217216
- name: Set up PHP
218217
uses: shivammathur/setup-php@v2
219218
with:
220-
php-version: '8.2'
219+
php-version: '8.3'
221220
- name: Install dependencies
222-
run: composer install --prefer-dist --no-progress --no-suggest
221+
run: composer install --prefer-dist --no-progress
223222
- name: Run tests
224-
run: vendor/bin/phpunit || echo "No tests found"
223+
run: vendor/bin/phpunit || echo "No tests found"

0 commit comments

Comments
 (0)