github.com/drone/go-convert@v0.0.0-20240307072510-6bd371c65e61/convert/github/testdata/examples/ruby.yaml (about)

     1  name: Ruby
     2  
     3  jobs:
     4    test:
     5  
     6      runs-on: ubuntu-latest
     7      strategy:
     8        matrix:
     9          ruby-version: ['2.6', '2.7', '3.0']
    10  
    11      steps:
    12        - uses: actions/checkout@v3
    13        - name: Set up Ruby
    14  
    15          uses: ruby/setup-ruby@ee2113536afb7f793eed4ce60e8d3b26db912da4 # v1.127.0
    16          with:
    17            ruby-version: ${{ matrix.ruby-version }}
    18            bundler-cache: true # runs 'bundle install' and caches installed gems automatically
    19        - name: Run tests
    20          run: bundle exec rake