Skip to content

Commit

Permalink
Add specs.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
hlascelles committed Apr 22, 2024
1 parent f4f3090 commit 5d25318
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/specs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Run RSpec tests
on: [ push ]
jobs:
run-rspec-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
# Not needed with a .ruby-version file
ruby-version: 3.0
# runs 'bundle install' and caches installed gems automatically
bundler-cache: true
- name: Run tests
run: |
bundle exec rspec

0 comments on commit 5d25318

Please sign in to comment.