Skip to content

Bump uuid from 9.0.1 to 10.0.0 #1291

Bump uuid from 9.0.1 to 10.0.0

Bump uuid from 9.0.1 to 10.0.0 #1291

Workflow file for this run

name: Laravel
on:
push:
branches: [ 4.x ]
pull_request:
branches: [ 4.x ]
jobs:
laravel:
runs-on: ubuntu-latest
steps:
- 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: '8.1'
extensions: mbstring, dom, fileinfo
coverage: xdebug #optional
- uses: getong/[email protected]
with:
#host port: 3308 # Optional, default value is 3306. The port of host
mariadb version: '10.7' # Optional, default value is "latest". The version of the MariaDB
mysql database: 'testbench' # Optional, default value is "test". The specified database which will be create
mysql user: 'default' # Required if "mysql root password" is empty, default is empty. The superuser for the specified database. Can use secrets, too
mysql password: 'secret' # Required if "mysql user" exists. The password for the "mysql user"
- name: Redis Server in GitHub Actions
uses: supercharge/[email protected]
with:
# Redis version to use
redis-version: 5 # optional, default is latest
- name: Install Dependencies
run: composer install --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
- name: Test & publish code coverage
uses: paambaati/[email protected]
env:
CC_TEST_REPORTER_ID: 1ba66b56bc5a04c17474d52e94124cb04d4a520c7c46a01ace9ce25e7b58b85d
with:
coverageCommand: vendor/bin/pest --coverage --ci
debug: false