-
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
GitHub workflows, Makefile, etc. #2
base: main
Are you sure you want to change the base?
Conversation
.github/workflows/release.yml
Outdated
@@ -0,0 +1,33 @@ | |||
name: release |
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.
There's no binary to release though, it's just a library, I think we can remove this action.
- gosec | ||
- revive | ||
|
||
linters: |
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.
The linter config was probably taken from the conduit project, right? I suggest rather taking it from a newer project like conduit-commons since it has a stricter config.
go.mod
Outdated
@@ -4,5 +4,192 @@ go 1.23.0 | |||
|
|||
require ( | |||
github.com/Masterminds/semver/v3 v3.3.0 | |||
github.com/conduitio/evolviconf/evolviyaml v0.0.0-20241105144803-b3ba81765197 |
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.
We should avoid this dependency, evolviconf should be able to stand by itself, evolviyaml wraps it and adds support for yaml configs. There could be other formats like toml or json. I propose creating a separate go module for examples, so that this module stays clean (e.g. github.com/conduitio/evolviconf/examples
).
README.md
Outdated
file, log warnings about unknown fields, fall back to a version, etc. | ||
|
||
EvolviConf supports |
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.
So cool, didn't know it supports! 😄
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.
Darn it, looks like I lost the readme changes I had.:/
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.
Updated.
Closes #1.