Skip to content

Commit f43a435

Browse files
committed
CI: add github actions for testing
1 parent 749617f commit f43a435

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed

.github/dependabot.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
version: 2
3+
updates:
4+
- package-ecosystem: "github-actions"
5+
directory: "/"
6+
schedule:
7+
interval: "daily"

.github/workflows/ruby.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: ruby
2+
on:
3+
push:
4+
pull_request:
5+
6+
jobs:
7+
test:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v4
11+
- uses: ruby/setup-ruby@v1
12+
with:
13+
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
14+
- run: bundle exec rspec

0 commit comments

Comments
 (0)