Skip to content

Instantly share code, notes, and snippets.

@sme777

sme777/ruby.yml Secret

Created February 2, 2022 07:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sme777/9e953c4277fa1f0d0d2aac91b297cd1c to your computer and use it in GitHub Desktop.
Save sme777/9e953c4277fa1f0d0d2aac91b297cd1c to your computer and use it in GitHub Desktop.
name: build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Install Ruby (3.0)
uses: actions/setup-ruby@v1
with:
ruby-version: 3.0.3
- name: Build and test with RSpec
run: |
gem install bundler
bundle install --jobs 4 --retry 3
bundle exec rspec
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment