This repository was archived by the owner on Dec 9, 2025. It is now read-only.
Update api.md #533
This file contains hidden or 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: Test | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v2 | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: 8.3 | |
| extensions: posix, dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick | |
| coverage: none | |
| - name: Install dependencies | |
| run: | | |
| cp .env.example .env | |
| composer install --no-interaction --prefer-dist --optimize-autoloader | |
| php artisan passport:keys | |
| env: | |
| DB_CONNECTION: testing | |
| - name: Generate key | |
| run: php artisan key:generate | |
| - name: Build Assets | |
| run: npm ci && npm run build | |
| - name: PHPUnit | |
| run: vendor/bin/phpunit | |
| env: | |
| GITHUB_CLIENT_ID: ${{ secrets.CLIENT_ID }} | |
| GITHUB_CLIENT_SECRET: ${{ secrets.CLIENT_SECRET }} | |
| - name: Integration Tests | |
| run: vendor/bin/phpunit tests/Integration | |
| env: | |
| GITHUB_CLIENT_ID: ${{ secrets.CLIENT_ID }} | |
| GITHUB_CLIENT_SECRET: ${{ secrets.CLIENT_SECRET }} | |
| GOOGLE_MAPS_API_KEY: ${{ secrets.GOOGLE_MAPS_API_KEY }} | |
| deploy: | |
| needs: [tests] | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Deploy | |
| if: github.ref_name == 'main' | |
| run: curl -d POST ${{ secrets.DEPLOY_HOOK }} | |
| #run: curl -d POST ${{ secrets.DEPLOY_HOOK }}?sha=${{ github.sha }} |