-
Notifications
You must be signed in to change notification settings - Fork 26
80 lines (72 loc) · 2.09 KB
/
ci-cd.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
name: CI-CD
on: [push]
jobs:
ci:
runs-on: ubuntu-latest
env:
DB_CONNECTION: pgsql
DB_DATABASE: testing
DB_USERNAME: postgres
DB_PASSWORD: password
APP_ENV: testing
BROADCAST_DRIVER: log
services:
database:
image: ankane/pgvector:latest
env:
POSTGRES_PASSWORD: password
POSTGRES_USER: root
POSTGRES_DB: testing
ports:
- 5432:5432
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
strategy:
fail-fast: false
matrix:
php-versions: ["8.2"]
steps:
- uses: actions/checkout@v4
- name: Setup PHP, with composer and extensions
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
tools: phpmd
extensions: mbstring, dom, fileinfo, pgsql, grpc, :psr
coverage: xdebug
- name: PHP Code Style (phpcs)
run: |
composer fix
- name: PHP Code Style (phpcs)
run: |
composer stan
- name: Enable PostgreSQL Extensions
run: |
PGPASSWORD=$DB_PASSWORD psql -h localhost -U $DB_USERNAME -d $DB_DATABASE -c "CREATE EXTENSION IF NOT EXISTS vector;"
env:
DB_PORT: ${{ job.services.postgres.ports['5432'] }}
- name: Test with phpunit
run: |
npm install && npm run build
XDEBUG_MODE=coverage php artisan test --coverage --min=50
env:
DB_PORT: ${{ job.services.postgres.ports['5432'] }}
cd:
runs-on: ubuntu-latest
needs: ci
if: github.ref == 'refs/heads/main'
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.2
tools: composer:v2
coverage: none
- name: Install Project Dependencies
run: |
curl https://envoyer.io/deploy/${{ secrets.ENVOYER }}