diff options
author | kesselb <mail@danielkesselberg.de> | 2021-09-28 08:36:24 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-28 08:36:24 +0200 |
commit | ee987d74303cb38b864f96660cd2ee6d6552ebfd (patch) | |
tree | b15cc243035e793fe79ca11532932129fd3acd82 /.github | |
parent | 8ef1b3b33c96fae0489021f898cbd92b7a8026cc (diff) | |
parent | 9161f6ca4aa43c7f65208ee50adcea24484c2b78 (diff) | |
download | nextcloud-server-ee987d74303cb38b864f96660cd2ee6d6552ebfd.tar.gz nextcloud-server-ee987d74303cb38b864f96660cd2ee6d6552ebfd.zip |
Merge pull request #24827 from nextcloud/bugfix/phpunit9
Run oci tests against phpunit9/php8
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/oci.yml | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/.github/workflows/oci.yml b/.github/workflows/oci.yml index 04d1dfdbab7..382ba4dafec 100644 --- a/.github/workflows/oci.yml +++ b/.github/workflows/oci.yml @@ -12,10 +12,9 @@ jobs: runs-on: ubuntu-20.04 strategy: - # do not stop on another job's failure fail-fast: false matrix: - php-versions: [ '7.4' ] + php-versions: [ '7.3', '7.4', '8.0' ] databases: [ 'oci' ] name: php${{ matrix.php-versions }}-${{ matrix.databases }} @@ -41,8 +40,8 @@ jobs: uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php-versions }} - extensions: ctype,curl,dom,fileinfo,gd,iconv,intl,json,mbstring,oci8,openssl,pdo_sqlite,posix,sqlite,xml,zip - tools: phpunit:8.5.2 + extensions: ctype,curl,dom,fileinfo,gd,iconv,imagick,intl,json,mbstring,oci8,openssl,pdo_sqlite,posix,sqlite,xml,zip + tools: phpunit:9 coverage: none - name: Set up Nextcloud |