-
Notifications
You must be signed in to change notification settings - Fork 7
51 lines (48 loc) · 1.13 KB
/
build.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
name: Build
on:
workflow_dispatch:
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
name: Run specs
strategy:
matrix:
ruby-version: ['2.7', '3.1']
rails-version: ['rails-6', 'rails-6.1', 'rails-7']
env:
BUNDLE_WITHOUT: release
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Run rspec
run: |
bundle exec appraisal install
cd spec/dummy
bundle exec rails db:test:prepare
cd ../..
bundle exec appraisal ${{ matrix.rails-version }} rspec
lint:
runs-on: ubuntu-latest
name: Run rubocop
strategy:
matrix:
ruby-version: ['2.7']
env:
BUNDLE_WITHOUT: release
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Run rubocop
run: |
bundle exec rubocop