-
-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[bazarr] Add bounded concurrency to episodes endpoint (#238)
* [bazarr] Add bounded concurrency to episodes endpoint Signed-off-by: Russell <russell@troxel.io> * Plumb Bazarr Config & Add defaults Signed-off-by: Russell <russell@troxel.io> * Move GolangCILint to run first Signed-off-by: Russell <russell@troxel.io> * break linter out into it's own job Signed-off-by: Russell <russell@troxel.io> * Bump default batch size to 300, put episode metrics behind EnableAdditionalMetrics Signed-off-by: Russell Troxel <russell@troxel.io> --------- Signed-off-by: Russell <russell@troxel.io> Signed-off-by: Russell Troxel <russell@troxel.io>
- Loading branch information
Showing
16 changed files
with
693 additions
and
104 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
--- | ||
name: Tests | ||
description: Runs Go tests | ||
|
||
runs: | ||
using: composite | ||
steps: | ||
- name: Set up Go | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version: ">=1.19" | ||
|
||
# Run golangcilint before `go get` is ran | ||
# https://github.com/golangci/golangci-lint-action/issues/23 | ||
- uses: golangci/golangci-lint-action@v2 | ||
with: | ||
version: v1.55.1 | ||
args: --timeout 5m --config .github/lint/golangci.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.