-
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cff95f9
commit 1b212ec
Showing
1 changed file
with
79 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
name: Code Quality | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
env: | ||
BROADCAST_DRIVER: log | ||
CACHE_DRIVER: redis | ||
QUEUE_CONNECTION: redis | ||
SESSION_DRIVER: redis | ||
DB_CONNECTION: pgsql | ||
DB_HOST: localhost | ||
DB_PASSWORD: postgres | ||
DB_USERNAME: postgres | ||
DB_DATABASE: postgres | ||
|
||
# Docs: https://docs.github.com/en/actions/using-containerized-services | ||
services: | ||
postgres: | ||
image: postgres:latest | ||
env: | ||
POSTGRES_USER: postgres | ||
POSTGRES_PASSWORD: postgres | ||
POSTGRES_DB: postgres | ||
ports: | ||
- 5432/tcp | ||
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 3 | ||
|
||
redis: | ||
image: redis | ||
ports: | ||
- 6379/tcp | ||
options: --health-cmd="redis-cli ping" --health-interval=10s --health-timeout=5s --health-retries=3 | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: shivammathur/setup-php/setup-php@v2 | ||
with: | ||
php-version: '8.3' | ||
extensions: pdo pdo_pgsql pgsql bcmath | ||
coverage: xdebug | ||
|
||
- name: Get composer cache directory | ||
id: composer-cache | ||
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT | ||
|
||
- name: Cache composer dependencies | ||
uses: actions/cache@v4 | ||
with: | ||
path: ${{ steps.composer-cache.outputs.dir }} | ||
# Use composer.json for key, if composer.lock is not committed. | ||
# key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }} | ||
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} | ||
restore-keys: ${{ runner.os }}-composer- | ||
|
||
- name: Install Composer dependencies | ||
run: composer install --no-progress --prefer-dist --optimize-autoloader | ||
|
||
- name: Prepare the application | ||
run: | | ||
php -r "file_exists('.env') || copy('.env.example', '.env');" | ||
php artisan key:generate | ||
- name: Clear Config | ||
run: php artisan config:clear | ||
|
||
- name: Run Migration | ||
run: php artisan migrate -v | ||
env: | ||
DB_PORT: ${{ job.services.postgres.ports[5432] }} | ||
REDIS_PORT: ${{ job.services.redis.ports['6379'] }} | ||
|
||
- name: Test with pest | ||
run: php artisan test --coverage-text | ||
env: | ||
DB_PORT: ${{ job.services.postgres.ports[5432] }} | ||
REDIS_PORT: ${{ job.services.redis.ports['6379'] }} |