Skip to content

Commit dfa37f7

Browse files
committed
.github/workflows/test: temporarily disable YARD check
Fails with ```load_setup_rb': undefined method `taint'`` Fixed in YARD but not released yet: lsegal/yard#1419
1 parent 59405b4 commit dfa37f7

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

.github/workflows/test.yml

+8-4
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,14 @@ jobs:
2323
- name: Rubocop lint
2424
run: bundle exec rubocop
2525

26-
- name: YARD lint
27-
run: |
28-
touch README # Workaround for "incorrect" anchor links in README.md
29-
bundle exec yardoc --fail-on-warning --no-progress --readme=README
26+
# Disable for now because Ruby 3.2 + YARD don't work well.
27+
# There's a YARD bug that has been fixed but not released yet:
28+
# * https://github.com/lsegal/yard/pull/1419
29+
#
30+
# - name: YARD lint
31+
# run: |
32+
# touch README # Workaround for "incorrect" anchor links in README.md
33+
# bundle exec yardoc --fail-on-warning --no-progress --readme=README
3034

3135
- name: Display Ruby version
3236
run: ruby -v

0 commit comments

Comments
 (0)