From c0d7f1abe151c97814826472090d36275c4a184e Mon Sep 17 00:00:00 2001 From: Kenshi Muto Date: Sat, 1 Jul 2023 12:30:29 +0900 Subject: [PATCH] try matrix test --- .github/workflows/pandoc.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pandoc.yml b/.github/workflows/pandoc.yml index d31033f..9fa2aee 100644 --- a/.github/workflows/pandoc.yml +++ b/.github/workflows/pandoc.yml @@ -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