Skip to content

Commit

Permalink
Merge pull request #111 from project-eutopia/github_workflow
Browse files Browse the repository at this point in the history
Add Github workflow
  • Loading branch information
project-eutopia committed Apr 29, 2021
2 parents cf6dc79 + 94e2dcc commit 00b728a
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 9 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Ruby

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

jobs:
test:

runs-on: ubuntu-latest

strategy:
matrix:
ruby-version: [2.3, 2.4, 2.5, 2.6, 2.7, 3.0]

steps:
- uses: actions/checkout@v2
- name: Set up Ruby ${{ matrix.ruby-version }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Install dependencies
run: bundle install
- name: Run tests
run: bundle exec rspec
9 changes: 0 additions & 9 deletions .travis.yml

This file was deleted.

0 comments on commit 00b728a

Please sign in to comment.