-
Notifications
You must be signed in to change notification settings - Fork 2
66 lines (56 loc) · 1.53 KB
/
verify.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
name: Verify
on:
pull_request:
branches: [main]
workflow_dispatch:
env:
POSTGRES_HOST: localhost
RAILS_ENV: test
MARRIAGE_BOOKLET_DATABASE_USER: postgres
MARRIAGE_BOOKLET_DATABASE_PASSWORD: postgres
jobs:
tests:
name: Tests
runs-on: ubuntu-latest
services:
postgres:
image: postgres:15
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: marriage_booklet_test
ports:
- 5432:5432
volumes:
- /var/run/postgresql:/var/run/postgresql
# Set health checks to wait until postgres has started
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Ruby and install gems
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
env:
ImageOS: ubuntu20 # To satisfy ::error::The environment variable ImageOS must be set
- name: Install required apt packages
run: |
sudo apt -y install libpq-dev
- name: Install required Node.js version
uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
- name: Setup test database
run: |
bundle exec rails db:reset
- name: Precompile assets
run: |
bundle exec rails assets:precompile
- name: Run tests
run: |
bundle exec rails test