-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (33 loc) · 1.01 KB
/
Copy pathci.yml
File metadata and controls
41 lines (33 loc) · 1.01 KB
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
33
34
35
36
37
38
39
40
41
name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build-and-test:
name: PHP ${{ matrix.php-versions }} Build and Test
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php-versions: ['8.0', '8.1', '8.2', '8.3']
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
extensions: curl, json
coverage: none
- name: Install Composer Dependencies
run: composer install --no-progress --prefer-dist --optimize-autoloader
- name: Run PHP Syntax Check (Linter)
run: |
find src/ -type f -name "*.php" -exec php -l {} \;
find tests/ -type f -name "*.php" -exec php -l {} \;
- name: Run PHP CodeSniffer (PSR-12)
run: vendor/bin/phpcs --standard=PSR12 src/ tests/
- name: Run PHPUnit Test Suite
run: vendor/bin/phpunit