-
-
Notifications
You must be signed in to change notification settings - Fork 0
32 lines (25 loc) · 697 Bytes
/
ci.yml
File metadata and controls
32 lines (25 loc) · 697 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
name: ✅ PHP CI (PHPStan + PHPUnit)
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
tests:
name: Run Static Analysis and Tests
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.4
extensions: mbstring, xml, pdo, curl
tools: phpstan, phpunit
- name: Install Dependencies
run: composer install --no-progress --prefer-dist
- name: Run PHPStan
run: composer test:type
- name: Run PHPUnit
run: composer test:unit