Skip to content

Commit

Permalink
.github/workflows/test: temporarily disable YARD check
Browse files Browse the repository at this point in the history
Fails with ```load_setup_rb': undefined method `taint'``

Fixed in YARD but not released yet:
lsegal/yard#1419
  • Loading branch information
kyrylo committed Jan 10, 2022
1 parent 59405b4 commit dfa37f7
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/test.yml
Expand Up @@ -23,10 +23,14 @@ jobs:
- name: Rubocop lint
run: bundle exec rubocop

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

- name: Display Ruby version
run: ruby -v
Expand Down

0 comments on commit dfa37f7

Please sign in to comment.