Sha256: 7c508c8673dcf59c34922025ba8b4de70b3d1a0d902fc5dda0a15710e1eb6247

Contents?: true

Size: 914 Bytes

Versions: 4

Compression:

Stored size: 914 Bytes

Contents

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
# For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby

name: build

on: [push, pull_request]

jobs:
  test:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        ruby-version: ['2.7', '3.0', '3.1']

    steps:
    - uses: actions/checkout@v2
    - name: Set up Ruby
      uses: ruby/setup-ruby@v1
      with:
        ruby-version: ${{ matrix.ruby-version }}
        bundler-cache: true # runs 'bundle install' and caches installed gems automatically
    - name: Run tests
      run: bundle exec rspec
    - name: Run benchmark
      run: bundle exec rake benchmark

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
lorekeeper-2.3.1 .github/workflows/build.yml
lorekeeper-2.3.0 .github/workflows/build.yml
lorekeeper-2.2.1 .github/workflows/build.yml
lorekeeper-2.2.0 .github/workflows/build.yml