Skip to content

Commit

Permalink
Update to PHP 8.4 #KDS-615 (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
mifich authored Jan 9, 2025
1 parent a21f434 commit 29d618f
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Codeception tests

on: [push]

jobs:
build:
name: ${{matrix.operating-system}}, PHP ${{ matrix.php }}

runs-on: ${{ matrix.operating-system }}

strategy:
matrix:
operating-system: [ ubuntu-latest, ubuntu-20.04 ]
php: [ '8.0', '8.1', '8.4' ]

steps:
- uses: actions/checkout@master

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

- name: Install dependencies
run: composer install

- name: Run tests
run: composer run test
3 changes: 3 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,8 @@
"psr-4": {
"Kodus\\Test\\Unit\\": "tests/unit/"
}
},
"scripts": {
"test": "codecept run"
}
}

0 comments on commit 29d618f

Please # to comment.