Last active
January 28, 2024 18:41
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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