Skip to content

Commit

Permalink
Merge pull request #51 from GDGAlgiers/tests-workflow
Browse files Browse the repository at this point in the history
Create Tests workflow
  • Loading branch information
Brivan-26 authored Oct 11, 2023
2 parents f3755a1 + 1ab86a8 commit fc2c81f
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/api-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Api test

on:
push:
branches: [ "master", "dev"]
pull_request:
branches: [ "master", "dev" ]

jobs:
laravel-tests:

runs-on: ubuntu-latest

steps:
- uses: shivammathur/setup-php@15c43e89cdef867065b0213be354c2841860869e
with:
php-version: '8.1'
- uses: actions/checkout@v3
- name: Copy .env
run: php -r "file_exists('.env') || copy('.env.example', '.env');"
- name: Update Dependencies
run: composer update
- name: Install Dependencies
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
- name: Generate key
run: php artisan key:generate
- name: Directory Permissions
run: chmod -R 777 storage bootstrap/cache
- name: Create Database
run: |
mkdir -p database
touch database/database.sqlite
- name: Execute tests (Unit and Feature tests) via PHPUnit
env:
DB_CONNECTION: sqlite
DB_DATABASE: database/database.sqlite
run: php artisan test

0 comments on commit fc2c81f

Please sign in to comment.