-
-
Notifications
You must be signed in to change notification settings - Fork 37
34 lines (30 loc) · 879 Bytes
/
rspec-tests.yml
File metadata and controls
34 lines (30 loc) · 879 Bytes
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
---
name: "RSpec Tests"
on: [push]
jobs:
test:
runs-on: ubuntu-latest
services:
postgres:
image: postgres:14-alpine
ports:
- "5432:5432"
env:
POSTGRES_DB: rails_test
POSTGRES_USER: rails
POSTGRES_PASSWORD: password
env:
RAILS_ENV: test
DATABASE_URL: "postgres://rails:password@localhost:5432/rails_test"
DISCOURSE_SSO_SECRET: ${{ secrets.DISCOURSE_SSO_SECRET }}
GOOGLE_SITE_VERIFICATION: ${{ secrets.GOOGLE_SITE_VERIFICATION }}
UNSUBSCRIBE_SECRET_BASE: ${{ secrets.UNSUBSCRIBE_SECRET_BASE }}
WISTIA_API_KEY: ${{ secrets.WISTIA_API_KEY }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Ruby and gems
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- run: bundle exec rspec