-
-
Notifications
You must be signed in to change notification settings - Fork 278
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 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
Showing
2 changed files
with
23 additions
and
71 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
This file was deleted.
Oops, something went wrong.