Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added ci -github #163

Merged
merged 2 commits into from
Mar 7, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: daru-view test

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
test:

strategy:
fail-fast: false
matrix:
os: [ubuntu]
ruby: [2.3.0, 2.4.0, 2.5.3, 2.6.0]
runs-on: ${{ matrix.os }}-latest

steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Install dependencies
run: |
gem install bundler
gem install rainbow -v '2.2.1'
bundle install
- name: Run tests
run: |
bundle exec rspec
bundle exec rubocop
- name: Push coverage report
run: bundle exec rake coveralls:push