Skip to content

Commit

Permalink
added worflows and tests
Browse files Browse the repository at this point in the history
  • Loading branch information
darshan45672 committed Aug 23, 2024
1 parent 55732cb commit 967e8da
Show file tree
Hide file tree
Showing 6 changed files with 200 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/issuses.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: issues

on:
issues:
types: [labeled]

permissions:
issues: write

jobs:
help-wanted:
uses: laravel/.github/.github/workflows/issues.yml@main
12 changes: 12 additions & 0 deletions .github/workflows/pull-requests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: pull requests

on:
pull_request_target:
types: [opened]

permissions:
pull-requests: write

jobs:
uneditable:
uses: laravel/.github/.github/workflows/pull-requests.yml@main
67 changes: 67 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
name: Tests

on:
push:
branches:
- main
- dev
- '*.x'
pull_request:
schedule:
- cron: '0 0 * * *'

permissions:
contents: read

jobs:
tests:
runs-on: ubuntu-latest

strategy:
fail-fast: true
matrix:
php: [8.2, 8.3]

name: PHP ${{ matrix.php }}

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite
coverage: none

- name: Install Composer dependencies
run: composer install --prefer-dist --no-interaction --no-progress

- name: Copy environment file
run: cp .env.example .env

- name: Generate app 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: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '20'
- name: Install npm dependencies
run: npm install
- name: Build assets
run: npm run build
- name: List build directory
run: ls -la public/build # Debugging step to check if manifest.json is generated
- name: Execute tests (Unit and Feature tests) via PHPUnit/Pest
env:
DB_CONNECTION: sqlite
DB_DATABASE: database/database.sqlite
run: php artisan test
13 changes: 13 additions & 0 deletions .github/workflows/update-changelog.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: update changelog

on:
release:
types: [released]

permissions: {}

jobs:
update:
permissions:
contents: write
uses: laravel/.github/.github/workflows/update-changelog.yml@main
48 changes: 48 additions & 0 deletions .github/workflows/yoojak-dev.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
name: Yoojak

on:
push:
branches:
- "dev"
pull_request:
branches:
- "dev"

jobs:
dev-branch-tests:
runs-on: ubuntu-latest

steps:
- uses: shivammathur/setup-php@15c43e89cdef867065b0213be354c2841860869e
with:
php-version: '8.2'
- uses: actions/checkout@v4
- name: Copy .env
run: php -r "file_exists('.env') || copy('.env.example', '.env');"
- name: Update composer
run: composer update -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
- 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: Setup Node.js
# uses: actions/setup-node@v3
# with:
# node-version: '20'
# - name: Install npm dependencies
# run: npm install
# - name: Build assets
# run: npm run build
# - name: List build directory
# run: ls -la public/build # Debugging step to check if manifest.json is generated
- name: Execute tests (Unit and Feature tests) via PHPUnit/Pest
env:
DB_CONNECTION: sqlite
DB_DATABASE: database/database.sqlite
run: php artisan test
48 changes: 48 additions & 0 deletions .github/workflows/yoojak-main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
name: Yoojak

on:
push:
branches:
- "main"
pull_request:
branches:
- "main"

jobs:
main-branch-tests:
runs-on: ubuntu-latest

steps:
- uses: shivammathur/setup-php@15c43e89cdef867065b0213be354c2841860869e
with:
php-version: '8.2'
- uses: actions/checkout@v4
- name: Copy .env
run: php -r "file_exists('.env') || copy('.env.example', '.env');"
- name: Update composer
run: composer update -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
- 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: Setup Node.js
# uses: actions/setup-node@v3
# with:
# node-version: '20'
# - name: Install npm dependencies
# run: npm install
# - name: Build assets
# run: npm run build
# - name: List build directory
# run: ls -la public/build #Debugging step to check if manifest.json is generated
- name: Execute tests (Unit and Feature tests) via PHPUnit/Pest
env:
DB_CONNECTION: sqlite
DB_DATABASE: database/database.sqlite
run: php artisan test

0 comments on commit 967e8da

Please sign in to comment.