Skip to content

Commit db5fb3c

Browse files
authored
Adds CI with Actions
1 parent d40bd14 commit db5fb3c

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

.github/workflows/ruby.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: CI
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
8+
runs-on: ubuntu-latest
9+
10+
steps:
11+
- uses: actions/checkout@v1
12+
- name: Set up Ruby 2.5.7
13+
uses: actions/setup-ruby@v1
14+
with:
15+
ruby-version: 2.5.7
16+
- name: Build and test
17+
run: |
18+
gem install bundler:1.16.1
19+
bundle install
20+
bin/rspec

0 commit comments

Comments
 (0)