-
Notifications
You must be signed in to change notification settings - Fork 0
43 lines (41 loc) · 1.12 KB
/
ci.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
name: CI
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.0.0
- uses: actions/cache@v2
with:
path: vendor/bundle
key: gems-build-rails-main-ruby-3.0.0-${{ hashFiles('**/Gemfile.lock') }}
- name: Lint with standard
run: |
bundle config path vendor/bundle
bundle install --jobs 4 --retry 3
bundle exec standardrb
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.0.0
- uses: actions/cache@v2
with:
path: vendor/bundle
key: gems-build-rails-main-ruby-3.0.0-${{ hashFiles('**/Gemfile.lock') }}
- name: Run tests
run: |
bundle config path vendor/bundle
bundle install --jobs 4 --retry 3
bundle exec rake db:test:prepare
bundle exec rake
env:
RAILS_ENV: test
DATABASE_URL: "postgres://postgres@localhost:5432/timeframe_test"