Skip to content

Commit

Permalink
Move gems to gemfile (#513)
Browse files Browse the repository at this point in the history
* Move dev-gems from gemspec to gemfile

No need managing them in the gemspec (complicated).

* Attempt to coverage

* Remove travis

* Add services and OS
  • Loading branch information
mhenrixon authored Jun 2, 2020
1 parent e801ce3 commit 14318e6
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 71 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/rspec.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,29 @@
name: RSpec
on: [push]
jobs:
coverage:
services:
redis:
image: redis:latest
ports:
- 6379:6379

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: 2.6.5
- run: bundle install --jobs=$(nproc) --retry=$(nproc)
- name: Coverage
uses: paambaati/[email protected]
env:
COV: true
CC_TEST_REPORTER_ID: 88e524e8f638efe690def7a6e2c72b1a9db5cdfa74548921b734d609a5858ee5
with:
coverageCommand: bin/rspec --require spec_helper --tag ~perf
debug: true
tests:
env:
COV: false
Expand Down
71 changes: 0 additions & 71 deletions .travis.yml

This file was deleted.

0 comments on commit 14318e6

Please sign in to comment.