Skip to content

Commit 4360dee

Browse files
committed
Add a testing workflow
1 parent b8ef34f commit 4360dee

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/main.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: "Run the test suite"
2+
on: push
3+
4+
jobs:
5+
test:
6+
timeout-minutes: 10
7+
name: "Testing the gem"
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: "Setup ruby"
11+
uses: "ruby/setup-ruby@v1"
12+
with:
13+
bundler-cache: true
14+
- name: "Run the test suite"
15+
run: "bundle exec rake test"

0 commit comments

Comments
 (0)