Skip to content

Commit f7acae7

Browse files
committed
test ci
1 parent 66a370c commit f7acae7

File tree

2 files changed

+29
-22
lines changed

2 files changed

+29
-22
lines changed

.github/workflows/ci.yml

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,25 +10,28 @@ on:
1010

1111
jobs:
1212
test:
13+
runs-on: ubuntu-latest
1314
strategy:
1415
fail-fast: false
1516
matrix:
16-
ruby: ["2.7"]
17-
18-
runs-on: ubuntu-latest
17+
ruby: ['2.4', '2.5', '2.6']
1918

2019
steps:
21-
- uses: actions/checkout@v2
20+
- name: Checkout
21+
uses: actions/checkout@v1
2222

23-
- uses: ruby/setup-ruby@v1
23+
- name: Setup Ruby
24+
uses: ruby/setup-ruby@v1
2425
with:
2526
ruby-version: ${{ matrix.ruby }}
2627
bundler-cache: true
2728

28-
- run: |
29+
- name: Install sqlite
30+
run: |
2931
sudo apt-get install libsqlite3-dev
3032
31-
- run: bundle exec rubocop
32-
33-
- run: INTEGRATION_TESTS=1 bundle exec rspec
33+
- name: Run Tests
34+
run: INTEGRATION_TESTS=1 bundle exec rspec
3435

36+
- name: Rubocop
37+
run: bundle exec rubocop

spec/integration/rails_5.2.4.1/Gemfile.lock

Lines changed: 17 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -78,14 +78,14 @@ GEM
7878
coffee-script-source
7979
execjs
8080
coffee-script-source (1.12.2)
81-
concurrent-ruby (1.1.5)
81+
concurrent-ruby (1.1.8)
8282
crass (1.0.6)
83-
erubi (1.9.0)
83+
erubi (1.10.0)
8484
execjs (2.7.0)
8585
ffi (1.12.2)
8686
globalid (0.4.2)
8787
activesupport (>= 4.2.0)
88-
i18n (1.8.2)
88+
i18n (1.8.10)
8989
concurrent-ruby (~> 1.0)
9090
io-like (0.3.0)
9191
jbuilder (2.9.1)
@@ -94,26 +94,30 @@ GEM
9494
rb-fsevent (~> 0.9, >= 0.9.4)
9595
rb-inotify (~> 0.9, >= 0.9.7)
9696
ruby_dep (~> 1.2)
97-
loofah (2.4.0)
97+
loofah (2.9.0)
9898
crass (~> 1.0.2)
9999
nokogiri (>= 1.5.9)
100100
mail (2.7.1)
101101
mini_mime (>= 0.1.1)
102102
marcel (0.3.3)
103103
mimemagic (~> 0.3.2)
104104
method_source (0.9.2)
105-
mimemagic (0.3.4)
105+
mimemagic (0.3.10)
106+
nokogiri (~> 1)
107+
rake
106108
mini_mime (1.0.2)
107-
mini_portile2 (2.4.0)
108-
minitest (5.14.0)
109+
mini_portile2 (2.5.0)
110+
minitest (5.14.4)
109111
msgpack (1.3.2)
110112
nio4r (2.5.2)
111-
nokogiri (1.10.8)
112-
mini_portile2 (~> 2.4.0)
113+
nokogiri (1.11.2)
114+
mini_portile2 (~> 2.5.0)
115+
racc (~> 1.4)
113116
public_suffix (4.0.3)
114117
puma (4.3.3)
115118
nio4r (~> 2.0)
116-
rack (2.1.2)
119+
racc (1.5.2)
120+
rack (2.2.3)
117121
rack-test (1.1.0)
118122
rack (>= 1.0, < 3)
119123
rails (5.2.4.1)
@@ -140,7 +144,7 @@ GEM
140144
method_source
141145
rake (>= 0.8.7)
142146
thor (>= 0.19.0, < 2.0)
143-
rake (13.0.1)
147+
rake (13.0.3)
144148
rb-fsevent (0.10.3)
145149
rb-inotify (0.10.1)
146150
ffi (~> 1.0)
@@ -175,7 +179,7 @@ GEM
175179
turbolinks (5.2.1)
176180
turbolinks-source (~> 5.2)
177181
turbolinks-source (5.2.0)
178-
tzinfo (1.2.6)
182+
tzinfo (1.2.9)
179183
thread_safe (~> 0.1)
180184
uglifier (4.2.0)
181185
execjs (>= 0.3.0, < 3)
@@ -213,4 +217,4 @@ DEPENDENCIES
213217
web-console (>= 3.3.0)
214218

215219
BUNDLED WITH
216-
2.1.2
220+
2.2.15

0 commit comments

Comments
 (0)