We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 513a3b2 commit 94739f0Copy full SHA for 94739f0
.github/workflows/rspec.yml
@@ -0,0 +1,25 @@
1
+name: RSpec
2
+
3
+on:
4
+ push:
5
+ branches: [ main ]
6
+ pull_request:
7
8
9
+jobs:
10
+ test:
11
12
+ runs-on: ubuntu-latest
13
+ strategy:
14
+ matrix:
15
+ ruby-version: ['2.6', '2.7', '3.0']
16
17
+ steps:
18
+ - uses: actions/checkout@v2
19
+ - name: Set up Ruby
20
+ uses: ruby/setup-ruby@v1
21
+ with:
22
+ ruby-version: ${{ matrix.ruby-version }}
23
+ bundler-cache: true
24
+ - name: Run tests
25
+ run: bundle exec rspec
0 commit comments