Skip to content
This repository was archived by the owner on Mar 19, 2025. It is now read-only.

fix volume

fix volume #41

Workflow file for this run

name: Run Laravel Tests
on:
- push
- pull_request
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.4'
tools: composer
extensions: mbstring, xml
- name: Install dependencies
run: composer install --prefer-dist --no-progress --no-suggest
- name: Set up environment file
run: cp .env.example .env
- name: Generate application key
run: php artisan key:generate
- name: Run Laravel tests
run: php artisan test