Skip to content

Commit

Permalink
Merge pull request #9 from QoboLtd/workflows
Browse files Browse the repository at this point in the history
Added automated workflows to run phpunit and static analysis
  • Loading branch information
nicosp authored Nov 20, 2024
2 parents d218d9f + 3943df7 commit 4a468b5
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 0 deletions.
46 changes: 46 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: PHPRETS CI

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

permissions:
contents: read

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
php_version: ["8.2"]
steps:
- uses: actions/checkout@v4
- name: Setup PHP with composer v2
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php_version }}
coverage: pcov
extensions: json, simplexml
tools: composer:v2
- name: Validate composer.json and composer.lock
run: composer validate --strict

- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v4
with:
path: vendor
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-php-
- name: Install dependencies
run: composer install --prefer-dist --no-interaction --no-progress

- name: Static analysis
run: composer run-script stan

- name: Run test suite
run: composer run-script test
7 changes: 7 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,5 +52,12 @@
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"stan": [
"phpcs --warning-severity=0",
"phpstan"
],
"test": "phpunit"
}
}

0 comments on commit 4a468b5

Please sign in to comment.