Skip to content

Commit 0198ace

Browse files
committed
Create ruby.yml
1 parent 150c369 commit 0198ace

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/ruby.yml

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Ruby
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
9+
jobs:
10+
build:
11+
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- uses: actions/checkout@v2
16+
- name: Set up Ruby 2.6
17+
uses: actions/setup-ruby@v1
18+
with:
19+
ruby-version: 2.6.x
20+
- name: Build and test with Rake
21+
run: |
22+
gem install bundler
23+
bundle install --jobs 4 --retry 3
24+
bundle exec rake

0 commit comments

Comments
 (0)