ngs/middleman-ogp

View on GitHub
.github/workflows/test.yml

Summary

Maintainability
Test Coverage
name: Run tests
on:
  push:
    branches:
    - '*'
jobs:
  test:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        ruby: [2.5, 2.6, 2.7, head, debug]
    continue-on-error: ${{ endsWith(matrix.ruby, 'head') || matrix.ruby == 'debug' }}
    steps:
    - uses: actions/checkout@v2
    - uses: ruby/setup-ruby@v1
      with:
        ruby-version: ${{ matrix.ruby }}
    - run: bundle install
    - run: bundle exec rake rubocop
    - run: bundle exec rake spec
    - run: bundle exec rake cucumber