File tree 3 files changed +0
-18
lines changed
3 files changed +0
-18
lines changed Original file line number Diff line number Diff line change 26
26
with :
27
27
ruby-version : ${{ steps.determine-ruby-version.outputs.VERSION }}
28
28
bundler-cache : true
29
- - name : Install gems
30
- run : |
31
- gem update bundler
32
- bundle
33
29
- name : Run tests
34
30
run : bundle exec rspec
Original file line number Diff line number Diff line change 26
26
with :
27
27
ruby-version : ${{ steps.determine-ruby-version.outputs.VERSION }}
28
28
bundler-cache : true
29
- - name : Install gems
30
- run : |
31
- gem update bundler
32
- bundle
33
29
- name : Run tests
34
30
run : bundle exec rspec
Original file line number Diff line number Diff line change 16
16
runs-on : ubuntu-latest
17
17
steps :
18
18
- uses : actions/checkout@v3
19
- - name : Determine ruby version
20
- id : determine-ruby-version
21
- run : |
22
- VERSION=$(cat .ruby-version)
23
- echo "VERSION=${VERSION}" >> "$GITHUB_OUTPUT"
24
19
- name : Set up Ruby
25
20
uses : ruby/setup-ruby@v1
26
21
with :
27
- ruby-version : ${{ steps.determine-ruby-version.outputs.VERSION }}
28
22
bundler-cache : true
29
- - name : Install gems
30
- run : |
31
- gem update bundler
32
- bundle
33
23
- name : Run tests
34
24
run : bundle exec rspec
You can’t perform that action at this time.
0 commit comments