Skip to content

chore: publish 4.0.6 to the enterprise channel #1598

chore: publish 4.0.6 to the enterprise channel

chore: publish 4.0.6 to the enterprise channel #1598

Workflow file for this run

# SPDX-FileCopyrightText: 2021 Nextcloud GmbH and Nextcloud contributors
# SPDX-License-Identifier: MIT
name: PHPUnit
on:
pull_request:
push:
branches:
- master
jobs:
php:
runs-on: ubuntu-latest
strategy:
# do not stop on another job's failure
fail-fast: false
matrix:
php-versions: ['8.1']
name: php${{ matrix.php-versions }}
steps:
- name: Set up php ${{ matrix.php-versions }}
uses: shivammathur/setup-php@44454db4f0199b8b9685a5d763dc37cbf79108e1 # v2.36.0
with:
php-version: ${{ matrix.php-versions }}
extensions: mbstring, iconv, fileinfo, intl
coverage: none
- name: Checkout server
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Run unit tests
run: |
composer install
sh -c "cd tests/unit/ && ../../vendor/bin/phpunit ."