Skip to content

Commit b6955a4

Browse files
committed
Remove doc test (too many gotchas)
1 parent b1b6910 commit b6955a4

1 file changed

Lines changed: 4 additions & 5 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,11 @@ permissions:
1313
jobs:
1414
test:
1515
strategy:
16+
fail-fast: false
1617
matrix:
1718
os: [ 'ubuntu-latest','macos-latest' ]
1819
# - https://www.ruby-lang.org/en/downloads/branches
19-
ruby: [ '3.1','ruby-head' ]
20+
ruby: [ '3.1','ruby-head','jruby-head' ]
2021

2122
runs-on: "${{ matrix.os }}"
2223

@@ -31,6 +32,7 @@ jobs:
3132
uses: ruby/setup-ruby@v1
3233
with:
3334
ruby-version: "${{ matrix.ruby }}"
35+
bundler: 'latest'
3436
bundler-cache: false
3537
cache-version: 2
3638

@@ -42,11 +44,8 @@ jobs:
4244
- name: Run tests
4345
run: bundle exec rake test
4446

45-
- name: Test doc
46-
run: bundle exec rake doc
47-
4847
- name: Test build & install
4948
run: |
5049
bundle exec rake build
5150
gem install --document --local pkg/*.gem
52-
ruby -w -rinit_copy -e 'puts InitCopy::VERSION'
51+
ruby -w -r init_copy -e 'puts InitCopy::VERSION'

0 commit comments

Comments
 (0)