Skip to content

Commit 14318e6

Browse files
authored
Move gems to gemfile (#513)
* Move dev-gems from gemspec to gemfile No need managing them in the gemspec (complicated). * Attempt to coverage * Remove travis * Add services and OS
1 parent e801ce3 commit 14318e6

2 files changed

Lines changed: 23 additions & 71 deletions

File tree

.github/workflows/rspec.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,29 @@
11
name: RSpec
22
on: [push]
33
jobs:
4+
coverage:
5+
services:
6+
redis:
7+
image: redis:latest
8+
ports:
9+
- 6379:6379
10+
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- uses: actions/checkout@v2
15+
- uses: ruby/setup-ruby@v1
16+
with:
17+
ruby-version: 2.6.5
18+
- run: bundle install --jobs=$(nproc) --retry=$(nproc)
19+
- name: Coverage
20+
uses: paambaati/codeclimate-action@v2.6.0
21+
env:
22+
COV: true
23+
CC_TEST_REPORTER_ID: 88e524e8f638efe690def7a6e2c72b1a9db5cdfa74548921b734d609a5858ee5
24+
with:
25+
coverageCommand: bin/rspec --require spec_helper --tag ~perf
26+
debug: true
427
tests:
528
env:
629
COV: false

.travis.yml

Lines changed: 0 additions & 71 deletions
This file was deleted.

0 commit comments

Comments
 (0)