Skip to content

Commit

Permalink
Merge pull request #202 from brianmario/eileencodes-patch-1
Browse files Browse the repository at this point in the history
Create ci.yml
  • Loading branch information
brianmario authored Jun 23, 2021
2 parents 0277f32 + 0bc347b commit ce6cbfb
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 15 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: CI

on: [push]

jobs:
test:
strategy:
matrix:
ruby_version: [2.6.x, 2.7.x]
fail-fast: false
runs-on: ubuntu-latest
name: Test on Ruby ${{ matrix.ruby_version }}
steps:
- uses: actions/checkout@v2
- name: Setup Ruby ${{ matrix.ruby_version }}
uses: actions/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby_version }}
- name: Install dependencies
run: bundle install
- name: Run tests
run: bundle exec rake spec
15 changes: 0 additions & 15 deletions .travis.yml

This file was deleted.

0 comments on commit ce6cbfb

Please sign in to comment.