Skip to content

fix: bump max file upload size to 100MB #74

fix: bump max file upload size to 100MB

fix: bump max file upload size to 100MB #74

Workflow file for this run

name: CI
on: push
jobs:
build-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: php-actions/composer@v5
with:
php_version: 7.4
- name: Set up mysql
run: |
sudo systemctl start mysql.service
mysql -uroot -proot -e "CREATE DATABASE laravel"
- name: Run tests
run: |
cp .env.example .env
php artisan key:generate
DB_PASSWORD=root vendor/bin/phpunit
- uses: actions/upload-artifact@v2
if: failure()
with:
name: laravel log
path: storage/logs/laravel.log