Sha256: 2b0365755c4b64fa1c611691c677dac9f9ba01e7a0381b8a9d3750839198cca2

Contents?: true

Size: 463 Bytes

Versions: 14

Compression:

Stored size: 463 Bytes

Contents

name: ubuntu

on: [push]

jobs:
  build:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        ruby: [ '2.6.x', '2.5.x', '2.4.x' ]
    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

14 entries across 14 versions & 1 rubygems

Version Path
yao-0.13.4 .github/workflows/ubuntu.yml
yao-0.13.3 .github/workflows/ubuntu.yml
yao-0.13.2 .github/workflows/ubuntu.yml
yao-0.13.1 .github/workflows/ubuntu.yml
yao-0.13.0 .github/workflows/ubuntu.yml
yao-0.12.0 .github/workflows/ubuntu.yml
yao-0.11.3 .github/workflows/ubuntu.yml
yao-0.11.2 .github/workflows/ubuntu.yml
yao-0.11.1 .github/workflows/ubuntu.yml
yao-0.11.0 .github/workflows/ubuntu.yml
yao-0.10.1 .github/workflows/ubuntu.yml
yao-0.10.0 .github/workflows/ubuntu.yml
yao-0.9.1 .github/workflows/ubuntu.yml
yao-0.9.0 .github/workflows/ubuntu.yml