Sha256: 1226e6d595cd589f2b7617650c7a1a69adbb3c8858e7a13c2ea5511b315a56a0

Contents?: true

Size: 957 Bytes

Versions: 1

Compression:

Stored size: 957 Bytes

Contents

---

name: Run tests
on:
  - push
  - pull_request

jobs:
  rspec:
    name: RSpec
    runs-on: ${{ matrix.os }}
    strategy:
      fail-fast: false
      matrix:
        ruby:
          - ruby-2.5
          - ruby-2.6
          - ruby-2.7
        os:
          - macos-latest
          - ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}
          bundler-cache: true
      - run: bundle exec rspec
  test-build:
    name: Test building the gem
    runs-on: ${{ matrix.os }}
    strategy:
      matrix:
        ruby:
          - ruby-2.5
          - ruby-2.6
          - ruby-2.7
        os:
          - macos-latest
          - ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}
          bundler-cache: true
      - run: bundle exec gem build lirc.gemspec

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
lirc-0.3.0 .github/workflows/test.yml