-
Notifications
You must be signed in to change notification settings - Fork 2
52 lines (47 loc) · 1.28 KB
/
test.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
name: test
on: [push, pull_request]
jobs:
rspec:
name: rspec
runs-on: ubuntu-24.04
services:
postgres:
image: timescale/timescaledb:2.17.1-pg15
env:
POSTGRES_PASSWORD: secret
ports:
- 5432:5432
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
env:
TZ: Etc/UTC
DATABASE_URL: postgresql://postgres:secret@localhost:5432/mnemosyne
steps:
- uses: actions/checkout@master
- uses: ruby/setup-ruby@v1
with:
ruby-version: '3.2'
bundler-cache: true
# https://github.com/actions/setup-node/issues/899
- run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: '20'
cache: yarn
- run: yarn install --immutable
- run: yarn build --mode production
- run: bundle exec rake db:create db:setup
- run: bundle exec rspec spec --format doc
rubocop:
name: rubocop
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@master
- uses: ruby/setup-ruby@v1
with:
ruby-version: '3.2'
bundler-cache: true
- run: bundle exec rubocop --color --parallel --fail-level E