Sha256: 8128f1096fa58ee8a2a2d7083b401623d836a5b0d986e5b3d40a2a76884f365c

Contents?: true

Size: 449 Bytes

Versions: 2

Compression:

Stored size: 449 Bytes

Contents

name: ubuntu

on: [push]

jobs:
  build:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        ruby: [3.0, 2.7, 2.6]
    steps:
    - uses: actions/checkout@master
    - name: Set up Ruby
      uses: actions/setup-ruby@v1
      with:
        ruby-version: ${{ matrix.ruby }}
    - name: Install dependencies
      run: |
        gem install bundler --no-document
        bundle install
    - name: Run test
      run: bundle exec rake test

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
yao-0.15.0 .github/workflows/ubuntu.yml
yao-0.14.0 .github/workflows/ubuntu.yml