Skip to content

Commit aa6d619

Browse files
authored
Merge pull request #13 from github/actions-ci
GitHub Actions CI Job
2 parents e61f398 + 6a18ecb commit aa6d619

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/ruby.yml

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

0 commit comments

Comments
 (0)