Skip to content

Commit

Permalink
add dependabot and test automation (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
ahaverbuch authored Apr 22, 2024
1 parent f61bcfd commit 8e29666
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
open-pull-requests-limit: 20
schedule:
interval: "daily"
time: "09:00"
timezone: "America/New_York"
commit-message:
prefix: "[github-actions] "
- package-ecosystem: "bundler"
directory: "/"
schedule:
interval: "daily"
time: "08:30"
timezone: "America/New_York"
allow:
- dependency-type: "all"
versioning-strategy: increase
open-pull-requests-limit: 20
insecure-external-code-execution: deny
commit-message:
prefix: "[bundler] "
23 changes: 23 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: build
on:
pull_request:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby-version: [3.2.2]
experimental: [false]
steps:
- uses: actions/checkout@v4
with:
show-progress: 'false'
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true # runs `bundle install` and caches installed gems automatically
- run: bundle exec rake

0 comments on commit 8e29666

Please sign in to comment.