Skip to content

Commit 28e904a

Browse files
committed
add return code warning
1 parent b924854 commit 28e904a

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,8 +297,12 @@ jobs:
297297
- uses: ruby/setup-ruby@v1
298298
with:
299299
ruby-version: "3.2"
300+
bundler: '4.0.0'
300301
- run: make init
301-
- run: pytest -vv tests/integration/workflows/ruby_bundler
302+
- run: |
303+
ruby -rbundler -e'p Bundler::CLI.printable_commands(true)'
304+
bundle cli_help
305+
pytest -vv tests/integration/workflows/ruby_bundler
302306
303307
dotnet-integration:
304308
name: ${{ matrix.os }} / ${{ matrix.python }} / dotnet

tests/integration/workflows/ruby_bundler/test_ruby.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@
1919
("runtime",),
2020
[
2121
("ruby3.2",),
22-
("ruby3.3",),
23-
("ruby3.4",),
2422
],
2523
)
2624
class TestRubyWorkflow(TestCase):

0 commit comments

Comments
 (0)