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
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,12 @@ jobs:
with:
node-version: "24.x"
- name: Install tools
run: "gem install --no-document toys && npm install linkinator"
# Pinned to the 0.22.x series deliberately: toys 0.23.0 broke the `build`
# tool ("Could not find a gemspec") and 0.24.0 additionally removed the
# `alias_tool` directive, so 0.22.0 is the last fully working release.
# Must be "~> 0.22.0" (>= 0.22.0, < 0.23.0) and not "~> 0.22", which
# would still admit 0.23 and 0.24.
run: "gem install --no-document toys -v '~> 0.22.0' && npm install linkinator"
- name: Test ${{ matrix.task }}
env:
GITHUB_EVENT_NAME: ${{ github.event_name }}
Expand Down
2 changes: 1 addition & 1 deletion gapic-common/.toys.rb
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
t.fail_on_undocumented_objects = false # TODO: Fix so this can be enabled
t.bundler = true
end
alias_tool :yard, :yardoc
tool "yard", delegate_to: "yardoc"

expand :gem_build

Expand Down
Loading