Skip to content

Commit

Permalink
add test workflow, add min php version to composer.json
Browse files Browse the repository at this point in the history
  • Loading branch information
KurtThiemann committed Nov 19, 2024
1 parent ee6a7b4 commit 7ad1a50
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 1 deletion.
44 changes: 44 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: Tests

on:
workflow_dispatch:
pull_request:
push:
branches:
- master

jobs:
tests:
runs-on: ubuntu-latest

strategy:
matrix:
php-version: [ '8.3' ]

name: Run tests on PHP v${{ matrix.php-version }}

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}

- name: Set composer cache directory
id: composer-cache
run: echo "COMPOSER_CACHE_DIRECTORY=$(composer config cache-files-dir)" >> $GITHUB_ENV

- name: Restore composer from cache
uses: actions/cache@v4
with:
path: ${{ env.COMPOSER_CACHE_DIRECTORY }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: ${{ runner.os }}-composer-

- name: Install composer dependencies
run: composer install --no-interaction --prefer-dist --no-progress

- name: Run phpunit tests
run: composer test
6 changes: 5 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
"psr/http-client": "^1.0",
"psr/http-message": "^2.0",
"psr/http-factory": "^1.1",
"ext-curl": "*"
"ext-curl": "*",
"php": ">=8.3.0"
},
"provide": {
"psr/http-client-implementation": "1.0",
Expand All @@ -32,5 +33,8 @@
],
"require-dev": {
"phpunit/phpunit": "^11.4"
},
"scripts": {
"test": "phpunit --config phpunit.xml --testdox"
}
}

0 comments on commit 7ad1a50

Please sign in to comment.