????
Current Path : /home/thenclexdoctor.com/public_html/vendor/joisarjignesh/bigbluebutton/.github/workflows/ |
Current File : /home/thenclexdoctor.com/public_html/vendor/joisarjignesh/bigbluebutton/.github/workflows/tests.yml |
name: BigBlueButton Tests on: push: pull_request: jobs: build: strategy: matrix: operating-system: [ubuntu-latest, windows-latest, macos-latest] php-versions: ['7.4','8.0','8.1'] runs-on: ${{ matrix.operating-system }} steps: - name: Checkout uses: actions/checkout@v2 - name: Setup PHP, with composer and extensions uses: shivammathur/setup-php@v2 #https://github.com/shivammathur/setup-php with: php-version: ${{ matrix.php-versions }} coverage: none #optional extensions: curl, libxml, mbstring, zip - name: Get composer cache directory id: composercache run: echo "::set-output name=dir::$(composer config cache-files-dir)" - name: Cache composer dependencies uses: actions/cache@v2 with: path: ${{ steps.composercache.outputs.dir }} # Use composer.json for key, if composer.lock is not committed. # key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }} key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} restore-keys: ${{ runner.os }}-composer- - name: Install dependencies run: composer install --no-progress --prefer-dist --optimize-autoloader - name: Test with phpunit run: vendor/bin/phpunit --coverage-text
Sorry, this page is not available...