Skip to content

Commit

Permalink
Merge pull request #6 from cs169/#187042228-set-up-ci
Browse files Browse the repository at this point in the history
Chore: Set Up CI
  • Loading branch information
cynthia-lixinyi authored Feb 17, 2024
2 parents 34e4710 + 9bd2705 commit 5bf24a8
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
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.3.0
- name: Build and test with RSpec
run: |
gem install bundler
bundle install --jobs 4 --retry 3
bundle exec rspec

0 comments on commit 5bf24a8

Please sign in to comment.