Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support ruby-head #288

Merged
merged 5 commits into from
May 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 3 additions & 11 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,27 +4,19 @@ updates:
directory: "/"
schedule:
interval: daily
time: "09:00"
timezone: "Etc/UTC"
time: "11:00"
open-pull-requests-limit: 10

- package-ecosystem: bundler
directory: "/"
schedule:
interval: daily
time: "09:00"
timezone: "Etc/UTC"
time: "11:00"
open-pull-requests-limit: 10
allow:
- dependency-name: "*"
dependency-type: "production"
- dependency-name: "sorbet*"
dependency-type: "all"

- package-ecosystem: cargo
directory: "/"
schedule:
interval: daily
time: "09:00"
timezone: "Etc/UTC"
time: "11:00"
open-pull-requests-limit: 10
5 changes: 4 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,16 @@ jobs:
- ubuntu-latest
- macos-latest
- windows-latest
ruby-version:
- 3.3
- ruby-head

steps:
- uses: actions/checkout@v4

- uses: oxidize-rb/actions/setup-ruby-and-rust@main
with:
ruby-version: 3.3
ruby-version: ${{ matrix.ruby-version }}
rubygems: latest
bundler-cache: true
cargo-cache: true
Expand Down
Loading