-
Notifications
You must be signed in to change notification settings - Fork 0
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
Instrument with ActiveSupport::Notifications #9
Conversation
Co-authored-by: David Genord II <david@collectiveidea.com>
Rails 7.0 supported 2.7. Test against that too.
.github/workflows/ci.yml
Outdated
@@ -14,6 +14,7 @@ jobs: | |||
strategy: | |||
matrix: | |||
ruby: | |||
- '2.7.8' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add 3.0 as well?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yeah, I guess I should care 🤣
90b91ae
to
e2208da
Compare
- '3.1.3' | ||
- '3.2.0' | ||
- 2.7 | ||
- '3.0' # keep as string or it turns into "3" which pulls the newest 3.x, not 3.0.x |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TIL
Taking some inspiration from ruby-grape/grape#1086
This may change a bit, but want to give us something to start with.
I'm also adding more tests along the way.