Skip to content

Commit

Permalink
Set up CI on GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
petergoldstein authored and abinoam committed Dec 30, 2022
1 parent c74fb3f commit 7ecbf08
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Tests

on: [push, pull_request]

jobs:
test:
runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix:
ruby-version:
- '3.1'
- '3.0'
- '2.7'
- '2.6'
- jruby-9.3

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 tests
run: bundle exec rake

0 comments on commit 7ecbf08

Please sign in to comment.