Skip to content

Commit

Permalink
move to github actions from travis
Browse files Browse the repository at this point in the history
  • Loading branch information
marcinruszkiewicz committed Feb 17, 2023
1 parent d6e193e commit 56d4f31
Show file tree
Hide file tree
Showing 4 changed files with 63 additions and 34 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/rspec.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Rspec
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
strategy:
fail-fast: false
matrix:
ruby: ['2.7', '3.0', '3.1', '3.2']
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: bundle exec rspec
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.6.5
3.0.5
71 changes: 39 additions & 32 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -8,43 +8,50 @@ PATH
GEM
remote: https://rubygems.org/
specs:
ast (2.4.0)
coderay (1.1.2)
diff-lcs (1.3)
hashie (4.0.0)
jaro_winkler (1.5.4)
method_source (0.9.2)
parallel (1.19.1)
parser (2.7.0.1)
ast (~> 2.4.0)
pry (0.12.2)
coderay (~> 1.1.0)
method_source (~> 0.9.0)
rainbow (3.0.0)
rake (13.0.1)
rspec (3.9.0)
rspec-core (~> 3.9.0)
rspec-expectations (~> 3.9.0)
rspec-mocks (~> 3.9.0)
rspec-core (3.9.1)
rspec-support (~> 3.9.1)
rspec-expectations (3.9.0)
ast (2.4.2)
coderay (1.1.3)
diff-lcs (1.5.0)
hashie (5.0.0)
json (2.6.3)
method_source (1.0.0)
parallel (1.22.1)
parser (3.2.1.0)
ast (~> 2.4.1)
pry (0.14.2)
coderay (~> 1.1)
method_source (~> 1.0)
rainbow (3.1.1)
rake (13.0.6)
regexp_parser (2.7.0)
rexml (3.2.5)
rspec (3.12.0)
rspec-core (~> 3.12.0)
rspec-expectations (~> 3.12.0)
rspec-mocks (~> 3.12.0)
rspec-core (3.12.1)
rspec-support (~> 3.12.0)
rspec-expectations (3.12.2)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.9.0)
rspec-mocks (3.9.0)
rspec-support (~> 3.12.0)
rspec-mocks (3.12.3)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.9.0)
rspec-support (3.9.2)
rubocop (0.78.0)
jaro_winkler (~> 1.5.1)
rspec-support (~> 3.12.0)
rspec-support (3.12.0)
rubocop (1.45.1)
json (~> 2.3)
parallel (~> 1.10)
parser (>= 2.6)
parser (>= 3.2.0.0)
rainbow (>= 2.2.2, < 4.0)
regexp_parser (>= 1.8, < 3.0)
rexml (>= 3.2.5, < 4.0)
rubocop-ast (>= 1.24.1, < 2.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 1.4.0, < 1.7)
ruby-progressbar (1.10.1)
thor (1.0.1)
unicode-display_width (1.6.0)
unicode-display_width (>= 2.4.0, < 3.0)
rubocop-ast (1.26.0)
parser (>= 3.2.1.0)
ruby-progressbar (1.11.0)
thor (1.2.1)
unicode-display_width (2.4.2)

PLATFORMS
ruby
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![Build Status](https://travis-ci.com/marcinruszkiewicz/kaiser-ruby.svg?branch=master)](https://travis-ci.com/marcinruszkiewicz/kaiser-ruby)
![Build Status](https://github.com/marcinruszkiewicz/kaiser-ruby/actions/workflows/rspec.yml/badge.svg)
[![Gem Version](https://badge.fury.io/rb/kaiser-ruby.svg)](https://badge.fury.io/rb/kaiser-ruby)

# KaiserRuby - a Rockstar to Ruby transpiler
Expand Down

0 comments on commit 56d4f31

Please sign in to comment.