Skip to content

Commit

Permalink
Add github actions to run tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Fun1hero committed Nov 25, 2024
1 parent 7dab152 commit 08f893c
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/rspec.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: CI tests
on: push
jobs:
run-rspec-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout the code
uses: actions/checkout@v3
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Run tests
run: |
bundle exec rspec

0 comments on commit 08f893c

Please sign in to comment.