Closed janrnc closed 1 year ago
Merging #15 (d56396c) into master (6e9e3a0) will decrease coverage by
0.94%
. The diff coverage is100.00%
.
@@ Coverage Diff @@
## master #15 +/- ##
==========================================
- Coverage 96.66% 95.73% -0.94%
==========================================
Files 7 7
Lines 660 656 -4
==========================================
- Hits 638 628 -10
- Misses 18 24 +6
Partials 4 4
Files | Coverage Δ | |
---|---|---|
chain.go | 93.02% <100.00%> (ø) |
|
cron.go | 92.39% <100.00%> (-3.36%) |
:arrow_down: |
:mega: Codecov offers a browser extension for seamless coverage viewing on GitHub. Try it in Chrome or Firefox today!
:tada: This PR is included in version 0.2.0 :tada:
The release is available on GitHub release
Your semantic-release bot :package::rocket:
Job
interface and used simplefunc()
instead. Access to external variables or struct properties is still possible using closures.cron.AddFunc()
.cron.AddJob()
renamed tocron.Add()
, taking in this newfunc()
job.Job
andWrappedJob
fromEntry
which made it possible to inspect the scheduledJob
struct. Now that jobs arefunc()
s, this is no longer relevant. Job struct management is up to the user who's free to map them to the cron IDs in the preferred way.