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 336377c commit 485ff38Copy full SHA for 485ff38
1 file changed
.github/workflows/test.yml
@@ -0,0 +1,18 @@
1
+name: Ruby tests
2
+
3
+on:
4
+ pull_request:
5
+ branches:
6
+ - main
7
8
+jobs:
9
+ test:
10
+ runs-on: ubuntu-20.04
11
+ steps:
12
+ - uses: actions/checkout@v2.3.4
13
+ - name: Set up Ruby
14
+ uses: ruby/setup-ruby@v1.66.1
15
+ with:
16
+ bundler-cache: true # runs 'bundle install' and caches installed gems automatically
17
+ - name: Run tests
18
+ run: bundle exec rake
0 commit comments