Skip to content

Commit 0acc5a7

Browse files
committed
Use specified ruby version
1 parent f20ee84 commit 0acc5a7

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/build.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,17 @@ jobs:
8787
matrix: ${{ toJson(matrix) }}
8888

8989
go-lint:
90+
name: "go-lint (Ruby ${{ matrix.ruby }})"
91+
9092
runs-on: ubuntu-latest
9193

94+
strategy:
95+
fail-fast: false
96+
97+
matrix:
98+
ruby:
99+
- "3.3"
100+
92101
steps:
93102
- uses: actions/checkout@v4
94103

@@ -98,7 +107,7 @@ jobs:
98107

99108
- uses: ruby/setup-ruby@v1
100109
with:
101-
ruby-version: ruby
110+
ruby-version: ${{ matrix.ruby }}
102111
bundler-cache: false
103112

104113
# FIXME: setup-go installs cache in `vendor/` and setup-ruby installs cache in `vendor/bundle/`

0 commit comments

Comments
 (0)