Skip to content

Commit

Permalink
Update to PHP 8.4 #KDS-614 (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
mifich authored Jan 9, 2025
1 parent 3ad041e commit a080b41
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,18 @@ jobs:
strategy:
matrix:
operating-system: [ ubuntu-latest, ubuntu-20.04 ]
php: [ '8.0', '8.1' ]
php: [ '8.0', '8.1', '8.4' ]

steps:
- uses: actions/checkout@master

- name: Setup PHP
uses: nanasess/setup-php@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: php vendor/bin/codecept run
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 a080b41

Please sign in to comment.