Skip to content

Commit 5d25318

Browse files
committed
Add specs.yml
1 parent f4f3090 commit 5d25318

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/specs.yml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Run RSpec tests
2+
on: [ push ]
3+
jobs:
4+
run-rspec-tests:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- uses: actions/checkout@v2
8+
- name: Set up Ruby
9+
uses: ruby/setup-ruby@v1
10+
with:
11+
# Not needed with a .ruby-version file
12+
ruby-version: 3.0
13+
# runs 'bundle install' and caches installed gems automatically
14+
bundler-cache: true
15+
- name: Run tests
16+
run: |
17+
bundle exec rspec

0 commit comments

Comments
 (0)