Skip to content

Commit

Permalink
Add github action workflows
Browse files Browse the repository at this point in the history
- [x] Run RSpec suit
  • Loading branch information
Juan Vasquez committed Apr 5, 2022
1 parent acd96dd commit 3bb5e68
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Run rake task

on: [push, pull_request]

jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: [3.1, 2.7.5]

steps:
- uses: actions/checkout@v2
- name: Set up Ruby ${{ matrix.ruby-version }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Run rake task
run: bundle exec rake

0 comments on commit 3bb5e68

Please sign in to comment.