Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,17 @@ jobs:
matrix: ${{ toJson(matrix) }}

go-lint:
name: "go-lint (Ruby ${{ matrix.ruby }})"

runs-on: ubuntu-latest

strategy:
fail-fast: false

matrix:
ruby:
- "3.3"

steps:
- uses: actions/checkout@v4

Expand All @@ -98,7 +107,7 @@ jobs:

- uses: ruby/setup-ruby@v1
with:
ruby-version: ruby
ruby-version: ${{ matrix.ruby }}
bundler-cache: false

# FIXME: setup-go installs cache in `vendor/` and setup-ruby installs cache in `vendor/bundle/`
Expand Down
8 changes: 4 additions & 4 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ GEM
ast (2.4.2)
base64 (0.2.0)
benchmark (0.4.0)
bigdecimal (3.1.8)
bigdecimal (3.1.9)
binding_of_caller (1.0.1)
debug_inspector (>= 1.2.0)
concurrent-ruby (1.3.4)
Expand Down Expand Up @@ -65,7 +65,7 @@ GEM
rb-fsevent (0.11.2)
rb-inotify (0.11.1)
ffi (~> 1.0)
rbs (3.7.0)
rbs (3.8.1)
logger
regexp_parser (2.9.3)
rouge (4.4.0)
Expand Down Expand Up @@ -127,7 +127,7 @@ GEM
net-ssh (>= 2.7)
net-telnet
sfl
steep (1.9.2)
steep (1.9.3)
activesupport (>= 5.1)
concurrent-ruby (>= 1.1.10)
csv (>= 3.0.9)
Expand All @@ -138,7 +138,7 @@ GEM
logger (>= 1.3.0)
parser (>= 3.1)
rainbow (>= 2.2.2, < 4.0)
rbs (~> 3.7.0)
rbs (~> 3.8)
securerandom (>= 0.1)
strscan (>= 1.0.0)
terminal-table (>= 2, < 4)
Expand Down
Loading