Skip to content

Bump laravel/prompts from 0.1.25 to 0.3.2 #4222

Bump laravel/prompts from 0.1.25 to 0.3.2

Bump laravel/prompts from 0.1.25 to 0.3.2 #4222

Workflow file for this run

name: Unit Tests & Coverage
on: [push]
jobs:
Code-Coverage:
runs-on: "ubuntu-latest"
strategy:
matrix:
php-version:
- "8.3"
mongodb-version:
- "6.0.8"
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install PHP with extensions
uses: shivammathur/setup-php@master
with:
tools: composer:v2
php-version: ${{ matrix.php-version }}
extensions: "json, mbstring, mongodb, pdo, xdebug"
- name: Start MongoDB
uses: supercharge/mongodb-github-action@1.11.0
with:
mongodb-version: ${{ matrix.mongodb-version }}
mongodb-username: commlink
mongodb-password: secret-password
mongodb-db: commlink-test
- name: Get Composer Cache Directory
id: composer-cache
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- name: Cache Composer
uses: actions/cache@v4
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-composer-
- name: Install app configuration
run: |
cp .github/workflows/env.testing .env.testing
cp .github/workflows/env.testing .env
- name: Install Composer dependencies and app configuration
run: composer install --no-progress --no-interaction
- name: Configure SQLite database
run: touch ${{ github.workspace }}/commlink-test
- name: Execute unit tests
run: ./vendor/bin/phpunit
env:
DB_DATABASE: "${{ github.workspace }}/commlink-test"