Skip to content

Commit

Permalink
try matrix test
Browse files Browse the repository at this point in the history
  • Loading branch information
kmuto authored and atusy committed Jul 3, 2023
1 parent 9babfe5 commit c0d7f1a
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/pandoc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,19 @@ jobs:
Pandoc:
runs-on: ubuntu-latest
timeout-minutes: 5
strategy:
fail-fast: false
matrix:
ruby: ['2.7', '3.1']
pandoc: ['2.11.3', '3.1.4']
steps:
- uses: actions/checkout@master
- uses: ruby/setup-ruby@v1
with:
ruby-version: '2.7'
ruby-version: ${{ matrix.ruby }}
- uses: r-lib/actions/setup-pandoc@v1
with:
pandoc-version: '2.11.3'
pandoc-version: ${{ matrix.pandoc }}
- run: |
gem install bundler --no-document
bundle install --retry 3
Expand Down

0 comments on commit c0d7f1a

Please sign in to comment.