-
Notifications
You must be signed in to change notification settings - Fork 36
Add opnode makefile, lints, and go1.18 #272
Conversation
Primarily for easier building and linting.
4a6821e
to
556d8d5
Compare
The misspell linter was trying to correct `strat` to `start`. This is typically correct, but not in this instance.
This enables the nice test ouput with `go test -v` that lists each test without polluting the output with logs from passing tests.
556d8d5
to
c9c1e0a
Compare
Required for go version 1.18
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.
Very nice, looking forward to start using Go fuzzing. Don't forget to update the CI Go version though.
e7e32ed
to
8ac860e
Compare
Codecov Report
@@ Coverage Diff @@
## main #272 +/- ##
==========================================
- Coverage 55.32% 55.20% -0.12%
==========================================
Files 39 39
Lines 2856 2862 +6
==========================================
Hits 1580 1580
- Misses 1117 1121 +4
- Partials 159 161 +2
Continue to review full report at Codecov.
|
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.
LGTM
Description
This does the following:
misspell
lint to the makefiles, docs, and CINotes
The misspell lint is good, but not perfect. The only false positive that I found was it was trying to correct
strat
tostart
.Metadata