We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e61f398 commit 6a18ecbCopy full SHA for 6a18ecb
.github/workflows/ruby.yml
@@ -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