We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c3ee0d6 commit be3e105Copy full SHA for be3e105
.github/workflows/test.yml
@@ -0,0 +1,34 @@
1
+on: [push]
2
+
3
+name: Test
4
5
+jobs:
6
+ run:
7
+ runs-on: ubuntu-latest
8
9
+ steps:
10
+ - name: Checkout
11
+ uses: actions/checkout@master
12
13
+ - name: Set up Ruby
14
+ uses: actions/setup-ruby@v1
15
+ with:
16
+ ruby-version: '2.7.x'
17
+ bundler-cache: true
18
19
+ - name: Cache bundled gems
20
+ uses: actions/cache@v2
21
22
+ path: vendor/bundle
23
+ key: ${{ runner.os }}-gems-${{ hashFiles('Gemfile.lock') }}
24
+ restore-keys: |
25
+ ${{ runner.os }}-gems-
26
27
+ - name: Install Ruby gems
28
+ run: |
29
+ bundle config path vendor/bundle
30
+ bundle install
31
32
+ - name: Run Rspec
33
34
+ bundle exec rspec
0 commit comments