Skip to content

Commit

Permalink
Add .github/workflows/ci.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
Interdictor committed Feb 4, 2024
1 parent 8f6e452 commit 0c294a2
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Ruby CI

on:
push:
branches:
- '*'

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout Repository
uses: actions/checkout@v2

- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2.2

- name: Install dependencies
run: |
gem install bundler
bundle install --jobs 1 --retry 2
- name: Run Tests
run: bundle exec rspec

0 comments on commit 0c294a2

Please sign in to comment.