Sha256: c6a12c9604015ab4bb229ca3b0f96c217e3109cc4862a19efb61d994dda3dce0

Contents?: true

Size: 669 Bytes

Versions: 14

Compression:

Stored size: 669 Bytes

Contents

name: Build

on:
  push:
    branches: [master]
  pull_request:
    branches: [master]

jobs:
  test:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        ruby-version: ['2.6', '2.7', '3.0']

    steps:
      - uses: actions/checkout@v2
      - name: Set up Ruby
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby-version }}
          bundler-cache: true
      - uses: actions/setup-node@v2
        with:
          node-version: '14'
      - name: Run prettier
        run: npm i -g yarn && yarn && yarn lint
      - name: Run Rubocop
        run: bundle exec rubocop
      - name: Run tests
        run: bundle exec rspec

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
ears-0.8.0 .github/workflows/build.yml
ears-0.7.2 .github/workflows/build.yml
ears-0.7.1 .github/workflows/build.yml
ears-0.7.0 .github/workflows/build.yml
ears-0.6.0 .github/workflows/build.yml
ears-0.5.0 .github/workflows/build.yml
ears-0.4.3 .github/workflows/build.yml
ears-0.3.3 .github/workflows/build.yml
ears-0.3.2 .github/workflows/build.yml
ears-0.3.1 .github/workflows/build.yml
ears-0.3.0 .github/workflows/build.yml
ears-0.2.1 .github/workflows/build.yml
ears-0.2.0 .github/workflows/build.yml
ears-0.1.0 .github/workflows/build.yml