Sha256: 23eb47cdc00da661ab601d10650fe56624c450a1df0dcd1ab86894e174be9c46
Contents?: true
Size: 823 Bytes
Versions: 7
Compression:
Stored size: 823 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: Ruby on: push: branches: [ master ] pull_request: branches: [ master ] jobs: test: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: actions/setup-ruby@v1 with: ruby-version: '2.7' - name: Install dependencies run: bundle install - name: Copy config.yml run: cp spec/config.yml{.sample,} - name: Run tests run: bundle exec rake
Version data entries
7 entries across 7 versions & 1 rubygems