fix: bump max file upload size to 100MB #74
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |