Skip to content

Commit c0ae493

Browse files
Fix CI not running for experimental versions (#165)
* Fix CI not running for experimental versions * Add latest PHP Versions * Fix syntax --------- Co-authored-by: Felix Jacobi <felix@jacobi-hamburg.net>
1 parent 9c8f3b7 commit c0ae493

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
run: composer install --dev --no-interaction
3131
- name: Execute tests without coverage
3232
run: tools/phpunit --testsuite="BigBlueButton unit test suite,BigBlueButton integration test suite"
33-
33+
3434
PHP:
3535
name: PHP ${{ matrix.php-versions }}
3636
runs-on: ubuntu-latest
@@ -42,7 +42,10 @@ jobs:
4242
include:
4343
- php-versions: '8.1'
4444
experimental: true
45-
45+
- php-versions: '8.2'
46+
experimental: true
47+
- php-versions: '8.3'
48+
experimental: true
4649
steps:
4750
- name: Checkout
4851
uses: actions/checkout@v2
@@ -65,7 +68,7 @@ jobs:
6568
tools/phpunit --coverage-clover=build/logs/coverage.xml --testsuite="BigBlueButton unit test suite,BigBlueButton integration test suite"
6669
- name: Execute tests without coverage
6770
if: ${{ matrix.experimental }}
68-
run: tools/phpunit --testsuite="BigBlueButton test suite"
71+
run: tools/phpunit --testsuite="BigBlueButton unit test suite,BigBlueButton integration test suite"
6972
continue-on-error: true
7073
- name: Coveralls
7174
env:

0 commit comments

Comments
 (0)