Skip to content

Commit

Permalink
github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
simonoff committed Mar 19, 2022
1 parent caa604a commit ee596c1
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Ruby
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
ruby:
- 2.7
- 3.0
- 3.1
- ruby-head
- jruby-9.3.3.0
include:
- ruby: ruby-head
env:
RUBYOPT: '--jit'
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: bundle exec rake
env:
LONG_RUN: true

0 comments on commit ee596c1

Please sign in to comment.