Skip to content

Commit cbe6cd5

Browse files
authored
Merge pull request #362 from itamae-kitchen/fix-integration-local
Stop testing with ruby:2.3 + integration-local
2 parents f46b9b7 + bbe14ed commit cbe6cd5

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/test_main.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ jobs:
2828
with:
2929
ruby-version: ${{ inputs.ruby }}
3030
bundler-cache: true
31+
bundler: default
3132

3233
- run: bundle update
3334

@@ -64,6 +65,7 @@ jobs:
6465
with:
6566
ruby-version: ${{ inputs.ruby }}
6667
bundler-cache: true
68+
bundler: default
6769

6870
- run: bundle update
6971

@@ -91,13 +93,17 @@ jobs:
9193
integration-local:
9294
runs-on: ubuntu-latest
9395

96+
# NOTE: When ruby is 2.3, tests run on stretch. But stretch is already EOL and didn't work apt-get
97+
if: ${{ inputs.ruby >= '2.4' }}
98+
9499
steps:
95100
- uses: actions/checkout@v3
96101

97102
- uses: ruby/setup-ruby@v1
98103
with:
99104
ruby-version: ${{ inputs.ruby }}
100105
bundler-cache: true
106+
bundler: default
101107

102108
- run: bundle update
103109

0 commit comments

Comments
 (0)