Sha256: ca5a1fbe19e578c3d9902d41c6c8ec1bceb5d57c1c726eb8b93f4de64a941005

Contents?: true

Size: 621 Bytes

Versions: 2

Compression:

Stored size: 621 Bytes

Contents

name: Build
on: [push,pull_request]
jobs:
  build:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        ruby-version:
          - 2.0
          - 2.6
          - 2.7
          - 3.0
          - ruby-head
          - jruby-9.1
          - jruby-head
    name: Ruby ${{ matrix.ruby-version }} sample
    steps:
      - uses: actions/checkout@v3
      - uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby-version }}
#          bundler-cache: true
      - run: bundle install
      - env:
          CONVERT_API_SECRET: ${{ secrets.CONVERTAPI_SECRET }}
        run: bundle exec rake spec

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
convert_api-1.3.2 .github/workflows/main.yml
convert_api-1.3.1 .github/workflows/main.yml