Skip to content

Commit

Permalink
Merge pull request #15 from petergoldstein/feature/migrate_to_github_…
Browse files Browse the repository at this point in the history
…actions

Migrate CI to GitHub Actions
  • Loading branch information
acook committed Apr 13, 2022
2 parents cf5d3b6 + c225c99 commit cba0826
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: CI

on: [push, pull_request]

jobs:
test:

runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix:
ruby: ["2.2", "2.3", "2.4", "2.5", "2.6", "2.7", "3.0", "3.1", ruby-head, jruby-9.2, jruby-9.3, jruby-head]

steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true # 'bundle install' and cache gems
ruby-version: ${{ matrix.ruby }}
- name: Run tests
run: bundle exec rspec

0 comments on commit cba0826

Please sign in to comment.