Skip to content

Commit

Permalink
Add github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielePalombo committed Jul 31, 2023
1 parent 825a63f commit ede4493
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/spec.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: "Rspec"
on:
pull_request:
branches: [ "main" ]
jobs:
rspec:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install Ruby and gems
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7.7
bundler-cache: true
- name: Run tests
run: bundle exec rspec spec

0 comments on commit ede4493

Please sign in to comment.