Skip to content

Commit e3ea9a6

Browse files
committed
Add a testing workflow
1 parent 3dcdb6f commit e3ea9a6

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

.github/workflows/main.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
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: "Checkout code"
11+
uses: "actions/checkout@v5"
12+
- name: "Setup ruby"
13+
uses: "ruby/setup-ruby@v1"
14+
with:
15+
bundler-cache: true
16+
- name: "Run the test suite"
17+
run: "bundle exec rake test"

.ruby-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.4.7

0 commit comments

Comments
 (0)