Sha256: 24f9da3445c2b77d0acfbdf1906ffe4cb8419e6a858a22bf5f2a4586c4d03174

Contents?: true

Size: 521 Bytes

Versions: 11

Compression:

Stored size: 521 Bytes

Contents

name: Tests

on: [push, pull_request]

jobs:
  build:
    strategy:
      fail-fast: false
      matrix:
        os: [ubuntu-latest]
        ruby: [2.6, 2.7]

    name: >-
      ${{matrix.os}}, ${{matrix.ruby}}

    runs-on: ${{matrix.os}}
    steps:
    - uses: actions/checkout@v1
    - uses: actions/setup-ruby@v1
      with:
        ruby-version: ${{matrix.ruby}}
    - name: Install dependencies
      run: |
        gem install bundler
        bundle install
    - name: Run tests
      run:  bundle exec rake test

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
tipi-0.38 .github/workflows/test.yml
tipi-0.37.2 .github/workflows/test.yml
tipi-0.37.1 .github/workflows/test.yml
tipi-0.37 .github/workflows/test.yml
tipi-0.36 .github/workflows/test.yml
tipi-0.35 .github/workflows/test.yml
tipi-0.34 .github/workflows/test.yml
tipi-0.33 .github/workflows/test.yml
tipi-0.32 .github/workflows/test.yml
tipi-0.31 .github/workflows/test.yml
tipi-0.30 .github/workflows/test.yml