Skip to content

Add Database Export and Import APIs #37

Add Database Export and Import APIs

Add Database Export and Import APIs #37

name: Integration Tests
on:
pull_request:
branches: [main]
workflow_dispatch:
jobs:
integration-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: "8.4"
- name: Install dependencies
run: composer install
- name: Run integration tests
run: vendor/bin/pest tests/Integration
- name: Report results
if: always()
run: echo "Integration tests completed."