-
Notifications
You must be signed in to change notification settings - Fork 10
50 lines (41 loc) · 1.03 KB
/
pull-request.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
name: 'pull-request'
on:
pull_request:
branches: [ 'main' ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php:
- "8.1"
- "8.2"
- "8.3"
services:
db-tests:
image: 'mysql/mysql-server:8.0'
env:
MYSQL_ROOT_PASSWORD: yap_root_password
MYSQL_DATABASE: yap_test
MYSQL_ROOT_HOST: '%'
ports:
- 3106:3306
steps:
- uses: actions/checkout@v4
id: code-checkout
- name: Setup PHP
uses: ./.github/actions/setup-php
- name: Install Dependencies
uses: ./.github/actions/install-deps
- name: Lint
uses: ./.github/actions/lint
- name: Test
uses: ./.github/actions/test
env:
GOOGLE_MAPS_API_KEY: ${{ secrets.GOOGLE_MAPS_API_KEY }}
- name: Auto-approve
if: github.actor == 'renovate[bot]'
uses: hmarr/auto-approve-action@v3
with:
github-token: ${{ secrets.GITHUB_TOKEN }}