Sha256: 909cbb32d98053ae492eeccb3bc7d409d3c872ee3c86737dcf8cb9e649dcfa92

Contents?: true

Size: 670 Bytes

Versions: 7

Compression:

Stored size: 670 Bytes

Contents

name: build
on: [push, pull_request]
jobs:
  build:
    strategy:
      fail-fast: false
      matrix:
        include:
          - ruby: 3.2
            gemfile: Gemfile
          - ruby: 3.1
            gemfile: Gemfile
    runs-on: ubuntu-latest
    env:
      BUNDLE_GEMFILE: ${{ matrix.gemfile }}
    steps:
      - uses: actions/checkout@v3

      - name: Install poppler-utils
        run: sudo apt-get install -y poppler-utils

      - name: Install antiword
        run: sudo apt-get install -y antiword

      - uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}
          bundler-cache: true

      - run: bundle exec rake test

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
simple_text_extract-3.0.6 .github/workflows/test.yml
simple_text_extract-3.0.5 .github/workflows/build.yml
simple_text_extract-3.0.4 .github/workflows/build.yml
simple_text_extract-3.0.3 .github/workflows/build.yml
simple_text_extract-3.0.2 .github/workflows/build.yml
simple_text_extract-3.0.1 .github/workflows/build.yml
simple_text_extract-3.0.0 .github/workflows/build.yml