Sha256: 0477187deb76b649cbc9fecb930192699d11610e964b8e8dc40bcaec3aa24712

Contents?: true

Size: 826 Bytes

Versions: 8

Compression:

Stored size: 826 Bytes

Contents

name: Rake

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

jobs:
  test:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        ruby-version: ['2.2', '2.3', '2.4', '2.5', '2.6', '2.7', '3.0', '3.1']

    steps:
    - uses: actions/checkout@v2
    - name: Set up Ruby
      uses: ruby/setup-ruby@v1
      with:
        ruby-version: ${{ matrix.ruby-version }}
        bundler-cache: true
    - name: Run Tests
      run: bundle exec rake utc test

  rubocop:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        ruby-version: ['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
    - name: Run Rubocop
      run: bundle exec rubocop

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
timezone-1.3.24 .github/workflows/rake.yml
timezone-1.3.23 .github/workflows/rake.yml
timezone-1.3.22 .github/workflows/rake.yml
timezone-1.3.21 .github/workflows/rake.yml
timezone-1.3.20 .github/workflows/rake.yml
timezone-1.3.19 .github/workflows/rake.yml
timezone-1.3.18 .github/workflows/rake.yml
timezone-1.3.17 .github/workflows/rake.yml