Sha256: 9c9fe374026b24db0974233de0476937715c30296d2fd4bf1759b59e8573b608

Contents?: true

Size: 885 Bytes

Versions: 7

Compression:

Stored size: 885 Bytes

Contents

name: CI
on: [push, pull_request]
jobs:
  lint:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v2
      - name: Set up Ruby
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: 2.7
      - name: Build
        run: bundle install --jobs 4 --retry 3
      - name: Lint
        run: bundle exec rake lint
  test:
    strategy:
      matrix:
        # ruby: [jruby, 2.4, 2.5, 2.6, 2.7]
        ruby: [2.4, 2.5, 2.6, 2.7]
        platform: [ubuntu-latest, macos-latest, windows-latest]
    runs-on: ${{ matrix.platform }}
    steps:
      - name: Checkout
        uses: actions/checkout@v2
      - name: Set up Ruby
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}
      - name: Build
        run: bundle install --jobs 4 --retry 3
      - name: Test
        run: bundle exec rake spec

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
asciidoctor-fb2-0.3.0 .github/workflows/ci.yml
asciidoctor-fb2-0.2.4 .github/workflows/ci.yml
asciidoctor-fb2-0.2.3 .github/workflows/ci.yml
asciidoctor-fb2-0.2.2 .github/workflows/ci.yml
asciidoctor-fb2-0.2.1 .github/workflows/ci.yml
asciidoctor-fb2-0.2.0 .github/workflows/ci.yml
asciidoctor-fb2-0.1.0 .github/workflows/ci.yml