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 c402bfa commit 465553eCopy full SHA for 465553e
.github/workflows/ruby.yml
@@ -0,0 +1,20 @@
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@v1
12
+ - name: Set up Ruby 2.6
13
+ uses: actions/setup-ruby@v1
14
+ with:
15
+ ruby-version: 2.6.x
16
+ - name: Build and test with Rake
17
+ run: |
18
+ gem install bundler
19
+ bundle install --jobs 4 --retry 3
20
+ make test
Makefile
@@ -2,4 +2,7 @@
install:
gem build json-api-vanilla.gemspec && gem install ./json-api-vanilla-*.gem
-.PHONY: install
+test:
+ rspec
+.PHONY: install test
0 commit comments