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 07f43e7 commit a4ccff8Copy full SHA for a4ccff8
.github/workflows/main.yml
@@ -0,0 +1,29 @@
1
+name: build
2
+
3
+on: [push, pull_request]
4
5
+jobs:
6
+ test:
7
8
+ runs-on: ubuntu-20.04
9
10
+ strategy:
11
+ matrix:
12
+ ruby-version:
13
+ - 3.0.0
14
+ - 2.7.2
15
+ - 2.6.6
16
+ - 2.5.8
17
+ - 2.4.10
18
19
+ steps:
20
+ - uses: actions/checkout@v2
21
22
+ - name: Set up Ruby ${{ matrix.ruby-version }}
23
+ uses: ruby/setup-ruby@v1
24
+ with:
25
+ ruby-version: ${{ matrix.ruby-version }}
26
+ bundler-cache: true
27
28
+ - name: Run tests
29
+ run: bundle exec rspec --format documentation
0 commit comments