• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

umputun / feed-master
75%

Build:
DEFAULT BRANCH: master
Repo Added 20 Oct 2019 06:46PM UTC
Files 16
Badge
Embed ▾
README BADGES
x

If you need to use a raster PNG badge, change the '.svg' to '.png' in the link

Markdown

Textile

RDoc

HTML

Rst

LAST BUILD ON BRANCH master
branch: SELECT
CHANGE BRANCH
x
  • No branch selected
  • actions
  • config
  • dependabot/github_actions/github-actions-updates-1ee787ebfb
  • dependabot/go_modules/github.com/microcosm-cc/bluemonday-1.0.16
  • dependabot/go_modules/go-modules-updates-2bc65d338a
  • dependabot/go_modules/go-modules-updates-35dcfad33e
  • dependabot/go_modules/go-modules-updates-68cdcc2012
  • dependabot/go_modules/go-modules-updates-71a6db2b89
  • dependabot/go_modules/go-modules-updates-950b4a9639
  • dependabot/go_modules/go-modules-updates-a8835f245c
  • dependabot/go_modules/golang.org/x/crypto-0.45.0
  • dependabot/go_modules/golang.org/x/net-0.17.0
  • dependabot/go_modules/golang.org/x/net-0.23.0
  • duration
  • dverhoturov/telegram_save_to_file
  • fix-ci-caching
  • invert_filter
  • item-duration
  • master
  • migrate-to-routegroup
  • paskal/bump_modules
  • paskal/duration-err
  • paskal/fix-ci-rebase
  • paskal/fix_filter
  • paskal/fix_golangcilint
  • paskal/fix_large_file_fallback
  • paskal/golangcilnt_improvements
  • paskal/telegram_documentation
  • paskal/telegram_improvements
  • paskal/telegram_proper_chan
  • paskal/trim_captions
  • paskal/trim_improvments
  • persistent-processed
  • refs/pull/12/merge
  • refs/tags/v2.10.0
  • refs/tags/v2.11.0
  • refs/tags/v2.11.1
  • refs/tags/v2.11.2
  • refs/tags/v2.11.3
  • refs/tags/v2.11.4
  • refs/tags/v2.4.0
  • refs/tags/v2.5.0
  • refs/tags/v2.6.0
  • refs/tags/v2.7.0
  • refs/tags/v2.8.0
  • refs/tags/v2.8.1
  • refs/tags/v2.8.2
  • refs/tags/v2.8.3
  • refs/tags/v2.8.4
  • refs/tags/v2.9.0
  • refs/tags/v2.9.1
  • refs/tags/v2.9.2
  • retry
  • twitter
  • update-modules
  • v2.3.0
  • youtube
  • yt-dlp-update
  • yt-mp3-tags
  • yt-playlist

04 Dec 2025 12:17AM UTC coverage: 74.538% (+0.01%) from 74.524%
19913195700

push

github

web-flow
migrate from go-chi to go-pkgz/routegroup and replace tollbooth with rest.Throttle (#161)

Replace go-chi/chi router with go-pkgz/routegroup which wraps the standard library
http.ServeMux and provides middleware support. Replace tollbooth rate limiter with
rest.Throttle from go-pkgz/rest. Also replace pkg/errors with standard fmt.Errorf
using %w for error wrapping.

Key changes:
- Router: chi.NewRouter() → routegroup.New(http.NewServeMux())
- URL params: chi.URLParam(r, "name") → r.PathValue("name")
- Route patterns: r.Get("/path/{name}") → r.HandleFunc("GET /path/{name}", handler)
- Rate limiting: tollbooth → rest.Throttle(N)
- Timeout: chi middleware.Timeout → http.TimeoutHandler
- Errors: errors.Wrap/Wrapf → fmt.Errorf with %w

41 of 89 new or added lines in 11 files covered. (46.07%)

1411 of 1893 relevant lines covered (74.54%)

10.68 hits per line

Relevant lines Covered
Build:
Build:
1893 RELEVANT LINES 1411 COVERED LINES
10.68 HITS PER LINE
Source Files on master
  • Tree
  • List 16
  • Changed 7
  • Source Changed 0
  • Coverage Changed 7
Coverage ∆ File Lines Relevant Covered Missed Hits/Line

Recent builds

Builds Branch Commit Type Ran Committer Via Coverage
19913195700 master migrate from go-chi to go-pkgz/routegroup and replace tollbooth with rest.Throttle (#161) Replace go-chi/chi router with go-pkgz/routegroup which wraps the standard library http.ServeMux and provides middleware support. Replace tollbooth rate lim... push 04 Dec 2025 12:19AM UTC web-flow github
74.54
19911329917 migrate-to-routegroup migrate from go-chi to go-pkgz/routegroup and replace tollbooth with rest.Throttle Replace go-chi/chi router with go-pkgz/routegroup which wraps the standard library http.ServeMux and provides middleware support. Replace tollbooth rate limiter wi... Pull #161 03 Dec 2025 10:48PM UTC paskal github pending completion  
19909857209 master Bump golang.org/x/crypto from 0.40.0 to 0.45.0 (#159) Bumps [golang.org/x/crypto](https://github.com/golang/crypto) from 0.40.0 to 0.45.0. - [Commits](https://github.com/golang/crypto/compare/v0.40.0...v0.45.0) --- updated-dependencies: - depend... push 03 Dec 2025 09:46PM UTC web-flow github
74.52
19907423650 migrate-to-routegroup migrate from go-chi to go-pkgz/routegroup and replace tollbooth with rest.Throttle Replace go-chi/chi router with go-pkgz/routegroup which wraps the standard library http.ServeMux and provides middleware support. Replace tollbooth rate limiter wi... Pull #161 03 Dec 2025 08:15PM UTC paskal github
74.54
19907374854 migrate-to-routegroup migrate from go-chi to go-pkgz/routegroup and replace tollbooth with rest.Throttle Replace go-chi/chi router with go-pkgz/routegroup which wraps the standard library http.ServeMux and provides middleware support. Replace tollbooth rate limiter wi... push 03 Dec 2025 08:13PM UTC paskal github
74.54
19903553979 master fix CI workflow caching by reordering checkout and setup-go steps (#160) - move checkout step before setup-go to enable proper Go module caching - update golangci-lint version from v2.3.0 to v2.6 push 03 Dec 2025 05:53PM UTC web-flow github
74.52
19901650056 fix-ci-caching fix CI workflow caching by reordering checkout and setup-go steps - move checkout step before setup-go to enable proper Go module caching - update golangci-lint version from v2.3.0 to v2.6 Pull #160 03 Dec 2025 04:47PM UTC paskal github
74.52
19523617810 dependabot/go_modules/golang.org/x/crypto-0.45.0 Bump golang.org/x/crypto from 0.40.0 to 0.45.0 Bumps [golang.org/x/crypto](https://github.com/golang/crypto) from 0.40.0 to 0.45.0. - [Commits](https://github.com/golang/crypto/compare/v0.40.0...v0.45.0) --- updated-dependencies: - dependency-na... Pull #159 20 Nov 2025 02:42AM UTC web-flow github
74.52
19523618518 dependabot/go_modules/golang.org/x/crypto-0.45.0 Bump golang.org/x/crypto from 0.40.0 to 0.45.0 Bumps [golang.org/x/crypto](https://github.com/golang/crypto) from 0.40.0 to 0.45.0. - [Commits](https://github.com/golang/crypto/compare/v0.40.0...v0.45.0) --- updated-dependencies: - dependency-na... Pull #159 20 Nov 2025 02:42AM UTC web-flow github
74.52
18865986972 master add bgutil-ytdlp-pot-provider integration for youtube downloads to bypass bot detection using po tokens push 28 Oct 2025 06:21AM UTC umputun github
74.52
See All Builds (486)
  • Repo on GitHub
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc