Merge pull request #47 from hngprojects/revert-36-scaffold #3
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: Laravel CI DEV | |
on: | |
push: | |
branches: | |
- dev | |
jobs: | |
run-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.2' | |
extensions: pgsql, pdo_pgsql, zip, bcmath | |
- name: Cache Composer dependencies | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.composer/cache | |
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} | |
restore-keys: | | |
${{ runner.os }}-composer- | |
- name: Install PHP dependencies | |
run: composer install --no-interaction --prefer-dist --optimize-autoloader | |
- name: Set environment variables for CI | |
run: | | |
cp .env.example .env | |
echo "APP_KEY=${{ secrets.APP_KEY }}" >> .env | |
echo "DB_CONNECTION=pgsql" >> .env | |
echo "DB_HOST=${{ secrets.DB_HOST }}" >> .env | |
echo "DB_PORT=${{ secrets.DB_PORT }}" >> .env | |
echo "DB_DATABASE=${{ secrets.DB_DATABASE }}" >> .env | |
echo "DB_USERNAME=${{ secrets.DB_USERNAME }}" >> .env | |
echo "DB_PASSWORD=${{ secrets.DB_PASSWORD }}" >> .env | |
- name: Run database migrations | |
run: php artisan migrate --force | |
- name: Clear configuration cache | |
run: php artisan config:clear | |
- name: Run Laravel tests | |
run: php artisan test | |
- name: Deploy to server | |
uses: appleboy/ssh-action@master | |
with: | |
host: ${{ secrets.SSH_HOST }} | |
username: ${{ secrets.SSH_USER }} | |
key: ${{ secrets.SSH_KEY }} | |
script: | | |
echo "About to Deploy" | |
cd /var/www/langlearnai-be/deployment | |
eval $(ssh-agent) | |
ssh-add ~/.ssh/id_ecdsa | |
git pull origin dev | |
composer install | |
php artisan migrate --force |