Skip to content

Instantly share code, notes, and snippets.

@Reimirno
Last active January 28, 2024 18:41
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 Reimirno/d2e967c326b30a909e479564b7bccdf9 to your computer and use it in GitHub Desktop.
Save Reimirno/d2e967c326b30a909e479564b7bccdf9 to your computer and use it in GitHub Desktop.
For the Q2Q Assignment in CS169L. First created for Sp24 Offering. Updated from https://gist.github.com/sme777/9e953c4277fa1f0d0d2aac91b297cd1c
name: build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Install Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.0.0' # Not needed with a .ruby-version file
- 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