-
Notifications
You must be signed in to change notification settings - Fork 0
53 lines (48 loc) · 1.18 KB
/
testing.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
name: Testing
on:
pull_request:
branches:
- '*'
push:
branches:
- main
jobs:
minitest:
runs-on: ubuntu-latest
env:
BUNDLE_WITHOUT: development
services:
postgres:
image: postgres:latest
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: password
ports: [ '5432:5432' ]
redis:
image: redis
ports: [ '6379:6379' ]
options: --entrypoint redis-server
steps:
- uses: actions/checkout@v2
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
bundler: default
bundler-cache: true
- name: Prepare database
env:
DATABASE_URL: postgres://postgres:password@localhost:5432/test
REDIS_URL: redis://localhost:6379/0
RAILS_ENV: test
PG_USER: postgres
run: |
bin/rails test:prepare
bin/rails db:test:prepare
- name: Run tests
env:
DATABASE_URL: postgres://postgres:password@localhost:5432/test
REDIS_URL: redis://localhost:6379/0
RAILS_ENV: test
PG_USER: postgres
run: |
bin/rails test test/