diff options
| -rw-r--r-- | .github/workflows/ci.yml | 3 | ||||
| -rw-r--r-- | Gemfile | 3 |
2 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index edb23809..56992ce8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,9 +33,6 @@ jobs: # remove 3.1 on ubuntu-latest to mark as primary - os: ubuntu-latest ruby: '3.1' - # remove 3.1 on windows as it's not yet available - - os: windows-latest - ruby: '3.1' include: - os: ubuntu-latest ruby: truffleruby-21.1.0 @@ -16,6 +16,9 @@ group :development do gem 'pygments.rb', ENV['PYGMENTS_VERSION'] if ENV.key? 'PYGMENTS_VERSION' # rouge is needed for testing source highlighting; Asciidoctor supports rouge >= 2 gem 'rouge', (ENV.fetch 'ROUGE_VERSION', '~> 3.0') + if Gem.win_platform? && (Gem::Version.new RUBY_VERSION) >= (Gem::Version.new '2.6.0') + gem 'nokogiri', '~> 1.13.0' + end end group :docs do |
