Skip to content

Commit

Permalink
Merge pull request #20 from petergoldstein/feature/migrate_ci_to_gith…
Browse files Browse the repository at this point in the history
…ub_actions

Migrate CI to GitHub Actions
  • Loading branch information
murbanski authored May 25, 2022
2 parents 15591c8 + 68f7038 commit a4284b1
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: CI

on: [push, pull_request]

jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ['2.1', '2.2', '2.3', '2.4', '2.5', '2.6', '2.7', '3.0', '3.1']

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 # 'bundle install' and cache
- name: Run specs
run: |
bundle exec rake

0 comments on commit a4284b1

Please sign in to comment.