Sha256: eaa9b339c81ec2acbe5ec2eedb4f10e65b3ffe5da3ac5eeda4fd51da703f32b7

Contents?: true

Size: 731 Bytes

Versions: 11

Compression:

Stored size: 731 Bytes

Contents

name: Tests
on:
  push:
    branches:
    - master
  pull_request:
    branches:
    - master
jobs:
  test:
    runs-on: ubuntu-20.04
    strategy:
      fail-fast: false
      matrix:
        include:
          - ruby: 2.5.7
            gemfile: Gemfile
          - ruby: 2.7.4
            gemfile: Gemfile
          - ruby: 3.0.2
            gemfile: Gemfile
    env:
      BUNDLE_GEMFILE: "${{ matrix.gemfile }}"
    steps:
    - uses: actions/checkout@v2
    - name: Install ruby
      uses: ruby/setup-ruby@v1
      with:
        ruby-version: "${{ matrix.ruby }}"
    - name: Bundle
      run: |
        gem install bundler:2.2.26
        bundle install --no-deployment
    - name: Run tests
      run: bundle exec rake
    

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
geordi-9.6.1 .github/workflows/test.yml
geordi-9.6.0 .github/workflows/test.yml
geordi-9.5.1 .github/workflows/test.yml
geordi-9.5.0 .github/workflows/test.yml
geordi-9.4.1 .github/workflows/test.yml
geordi-9.4.0 .github/workflows/test.yml
geordi-9.3.1 .github/workflows/test.yml
geordi-9.3.0 .github/workflows/test.yml
geordi-9.2.0 .github/workflows/test.yml
geordi-9.1.0 .github/workflows/test.yml
geordi-9.0.0 .github/workflows/test.yml