Skip to content

Commit a275c64

Browse files
install gems in GitHub action
1 parent 22da276 commit a275c64

File tree

1 file changed

+15
-12
lines changed

1 file changed

+15
-12
lines changed

.github/workflows/pr-verify.yml

Lines changed: 15 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -23,22 +23,25 @@ jobs:
2323
ruby-version: 3.0.5
2424
bundler-cache: true
2525

26+
- name: Install gems
27+
run: bundle install
28+
2629
- name: Run tests
2730
run: rake test
2831

2932
# Test on latest Ruby
30-
test_3_3:
31-
runs-on: ubuntu-latest
33+
# test_3_3:
34+
# runs-on: ubuntu-latest
3235

33-
steps:
34-
- name: Checkout code
35-
uses: actions/checkout@v3
36+
# steps:
37+
# - name: Checkout code
38+
# uses: actions/checkout@v3
3639

37-
- name: Set up Ruby
38-
uses: ruby/setup-ruby@v1
39-
with:
40-
ruby-version: 3.3
41-
bundler-cache: true
40+
# - name: Set up Ruby
41+
# uses: ruby/setup-ruby@v1
42+
# with:
43+
# ruby-version: 3.3
44+
# bundler-cache: true
4245

43-
- name: Run tests
44-
run: rake test
46+
# - name: Run tests
47+
# run: rake test

0 commit comments

Comments
 (0)