Sha256: 647fb6d8ee6043e5bd70c56de3e8fc92c3b20e2a8fb585a271c0a1776e95109b

Contents?: true

Size: 446 Bytes

Versions: 6

Compression:

Stored size: 446 Bytes

Contents

name: ubuntu

on: [push]

jobs:
  build:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        ruby: [3.1, 3.0, 2.7]
    steps:
    - uses: actions/checkout@master
    - name: Set up Ruby
      uses: ruby/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

6 entries across 6 versions & 1 rubygems

Version Path
yao-0.21.0 .github/workflows/ubuntu.yml
yao-0.20.0 .github/workflows/ubuntu.yml
yao-0.19.0 .github/workflows/ubuntu.yml
yao-0.18.0 .github/workflows/ubuntu.yml
yao-0.17.0 .github/workflows/ubuntu.yml
yao-0.16.0 .github/workflows/ubuntu.yml