Sha256: c7f82be05d097e0e7c25e67a3808a823709745bedf92dd25c9191c9ccb6f3809

Contents?: true

Size: 664 Bytes

Versions: 5

Compression:

Stored size: 664 Bytes

Contents

name: Ruby CI

on:
  push:
    branches:
      - '*'         # matches every branch
      - '*/*'       # matches every branch containing a single '/'

jobs:
  build:
    runs-on: ubuntu-latest
    defaults:
      run:
        working-directory: ./

    strategy:
      matrix:
        ruby-version: [2.6, 2.7]

    steps:
    - uses: actions/checkout@v2
    - name: Set up Ruby
      uses: ruby/setup-ruby@v1
      with:
        ruby-version: ${{ matrix.ruby-version }}
    - name: Install dependencies
      run: bundle install
    - name: Rubocop Check
      run: bundle exec rubocop
    - name: Run all tests
      run: bundle exec rake test
      shell: bash

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
twiglet-2.2.0 .github/workflows/ruby.yml
twiglet-2.1.1 .github/workflows/ruby.yml
twiglet-2.1.0 .github/workflows/ruby.yml
twiglet-2.0.0 .github/workflows/ruby.yml
twiglet-2.0.0.pre.alpha.1 .github/workflows/ruby.yml