Skip to content

Commit

Permalink
Merge pull request #1553 from kmuto/fix-github-actions-win
Browse files Browse the repository at this point in the history
fix ruby-win.yml
  • Loading branch information
takahashim authored Aug 19, 2020
2 parents 00ec82c + 8fdda77 commit 9e0628a
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions .github/workflows/ruby-win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,17 +23,23 @@ jobs:
gem install bundler --no-document
bundle install --retry 3
bundle exec ruby test/run_test.rb --max-diff-target-string-size=10000 --verbose=v
- name: Test with epubcheck-ruby
- name: install Re:VIEW and epubcheck-ruby
shell: bash
run: |
gem install -N epubcheck-ruby
ruby bin/review-init hello
rake install
- name: Test with epubcheck-ruby
shell: bash
run: |
review-init hello
cd hello
ruby ../bin/review-epubmaker config.yml
ruby -e 'Dir.glob("*.re"){|path| File.write(path, File.read(path).gsub("=", "= foo")) }'
review-epubmaker config.yml
epubcheck book.epub
cd ..
ruby bin/review-init hello2 --epub-version 2
review-init hello2 --epub-version 2
cd hello2
ruby ../bin/review-epubmaker config.yml
ruby -e 'Dir.glob("*.re"){|path| File.write(path, File.read(path).gsub("=", "= foo")) }'
review-epubmaker config.yml
epubcheck book.epub
cd ..

0 comments on commit 9e0628a

Please sign in to comment.