-
Notifications
You must be signed in to change notification settings - Fork 7
42 lines (39 loc) · 1 KB
/
tests.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
name: Tests
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
OXA_DB_USER: accounts
OXA_DB_PASS: accounts
OXA_TEST_DB: ci_test
RAILS_ENV: test
HEADLESS: true
on:
pull_request:
push:
branches:
- main
schedule:
- cron: '0 0 * * 0' # weekly
jobs:
tests:
timeout-minutes: 30
runs-on: ubuntu-20.04
services:
postgres:
image: postgres:11
ports:
- 5432:5432
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
env:
POSTGRES_USER: ${{ env.OXA_DB_USER }}
POSTGRES_DB: ${{ env.OXA_TEST_DB }}
POSTGRES_PASSWORD: ${{ env.OXA_DB_PASS }}
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Test
run: |
bundle install --jobs 4 --retry 3
bundle exec rake parallel:create parallel:load_schema parallel:seed --trace
WORKERS=4 bundle exec rake parallel:spec