Skip to content

Instantly share code, notes, and snippets.

View mzarallo's full-sized avatar
😎

Mauricio Zarallo mzarallo

😎
View GitHub Profile
@mzarallo
mzarallo / workflow.yml
Last active December 16, 2022 22:09
Laravel 9 pipeline for Github action self hosted runner
name: Build & Test
on:
push:
branches:
- "**"
paths:
- ".github/**"
- "app/**"
- "config/**"
@mzarallo
mzarallo / .env.ci
Last active April 26, 2024 17:08
Github action to test your application in Laravel and deploy via SSH
APP_KEY=
APP_ENV=local
APP_DEBUG=true
APP_URL=http://127.0.0.1:8000
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=laravel
DB_USERNAME=root