We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 749617f commit f43a435Copy full SHA for f43a435
.github/dependabot.yml
@@ -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
@@ -0,0 +1,14 @@
+name: ruby
+on:
+ push:
+ pull_request:
+
+jobs:
+ 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