We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f20ee84 commit 0acc5a7Copy full SHA for 0acc5a7
.github/workflows/build.yml
@@ -87,8 +87,17 @@ jobs:
87
matrix: ${{ toJson(matrix) }}
88
89
go-lint:
90
+ name: "go-lint (Ruby ${{ matrix.ruby }})"
91
+
92
runs-on: ubuntu-latest
93
94
+ strategy:
95
+ fail-fast: false
96
97
+ matrix:
98
+ ruby:
99
+ - "3.3"
100
101
steps:
102
- uses: actions/checkout@v4
103
@@ -98,7 +107,7 @@ jobs:
107
108
- uses: ruby/setup-ruby@v1
109
with:
- ruby-version: ruby
110
+ ruby-version: ${{ matrix.ruby }}
111
bundler-cache: false
112
104
113
# FIXME: setup-go installs cache in `vendor/` and setup-ruby installs cache in `vendor/bundle/`
0 commit comments