-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (32 loc) · 991 Bytes
/
rspec_push.yaml
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
name: Run RSpec
on:
push:
branches:
- "*" # Trigger on push to any branch
jobs:
rspec:
runs-on: ubuntu-latest
if: github.ref != 'refs/heads/main'
services:
postgres:
image: postgres:16.1
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: ${{ secrets.ROUTE_RATER_DATABASE_PASSWORD }}
POSTGRES_DB: postgres
ports:
- 5432:5432
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
redis:
image: redis
ports:
- 6379:6379
options: --health-cmd "redis-cli ping" --health-interval 10s --health-timeout 5s --health-retries 5
steps:
- uses: actions/checkout@v3
- name: Run RSpec
uses: ./.github/actions/run_rspec
with:
ruby-version: "3.2.0"
postgres-password: ${{ secrets.ROUTE_RATER_DATABASE_PASSWORD }}
google-api-key: ${{ secrets.GOOGLE_API_KEY }}