-
Notifications
You must be signed in to change notification settings - Fork 7
2025 refresh #14
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
Merged
Merged
2025 refresh #14
Changes from all commits
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
61ea9b3
Remove old nginx conf
benc-uk bd8f3eb
Refreshed for eslint and all packages to latest
benc-uk 93d2ecb
Fix run target dependency to ensure frontend modules are available be…
benc-uk a5fd42e
Refactor golangci-lint configuration for improved clarity and organiz…
benc-uk b89d948
golangci-lint fixes
benc-uk d04eb45
Update base images in Dockerfiles to latest stable versions
benc-uk 922df08
Update Dapr sidecar images to latest version and clean up Dockerfile
benc-uk 15b9ecc
Bump version to 0.8.6 in Makefile
benc-uk e309a16
Version bumps
benc-uk 56dec7e
Major refactor of testing
benc-uk d2f54a8
Add Bruno collection
benc-uk 602c47f
Add TypeSpec for API
benc-uk 9607cf3
Update README.md to enhance Docker instructions and clarify identity …
benc-uk 8f54633
Update CI workflow to use latest actions and Go version
benc-uk 9386a54
Update CI workflows: add golangci-lint installation and upgrade check…
benc-uk e064a93
Refactor CI workflow: update integration test steps and remove unused…
benc-uk e994635
Update CI workflow and Makefile: add integration test reporting and i…
benc-uk 0e43a0c
Update CI workflow: initialize Dapr and upgrade test reporting action…
benc-uk 4e56730
Update CI workflow and Makefile: add golangci-lint installation, impr…
benc-uk 9512601
Update CI workflow and Makefile: install go-junit-report, enhance tes…
benc-uk eb3f79d
Update CI workflow and Makefile: rename test report output files for …
benc-uk 1e3506f
Update CI workflow: re-enable build and push Docker images job with p…
benc-uk 36ea848
Update CI workflow and Makefile: standardize test report paths and im…
benc-uk a6aa799
Names for tests
benc-uk ab77335
Update README.md: add GitHub Actions workflow status badge
benc-uk 5f1f6cf
Update CI workflow: replace sleep with inotifywait for API integratio…
benc-uk ef78a35
Update CI workflow: modify inotifywait to monitor specific file for A…
benc-uk 15d2247
Update CI workflow: replace inotifywait with sleep for API integratio…
benc-uk b719028
Update .github/workflows/ci-build.yml
benc-uk e7db083
Update CI workflow to run API integration tests with a new URL check …
benc-uk File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
| @@ -1,41 +1,50 @@ | ||
| # ================================================================= | ||
| # An opinionated config for linting Go code with golangci-lint | ||
| # See https://golangci-lint.run/usage/linters | ||
| # ================================================================= | ||
|
|
||
| version: "2" | ||
| linters: | ||
| enable: | ||
| - revive # Replacement for golint | ||
| - gofmt # Runs gofmt as part of the linter | ||
| - wsl # Whitespace style enforcer, a matter of taste | ||
| - stylecheck # A few Go style rules | ||
| - misspell # Find misspelled words | ||
| - cyclop # Find cyclomatic complexity | ||
| - gocyclo # Also find cyclomatic complexity | ||
| - bodyclose # Check for HTTP body close errors | ||
| - nilerr # Find bad nil/err handling | ||
| - nilnil # Also find bad nil/err handling | ||
|
|
||
| linters-settings: | ||
| misspell: | ||
| locale: UK # Enable UK spelling | ||
|
|
||
| # Check struck tag naming | ||
| tagliatelle: | ||
| case: | ||
| use-field-name: true | ||
| - bodyclose | ||
| - cyclop | ||
| - gocyclo | ||
| - misspell | ||
| - nilerr | ||
| - nilnil | ||
| - revive | ||
| - staticcheck | ||
| - wsl | ||
| settings: | ||
| misspell: | ||
| locale: UK | ||
| revive: | ||
| confidence: 0.5 | ||
| severity: error | ||
| enable-all-rules: false | ||
| rules: | ||
| json: goCamel | ||
| yaml: goCamel | ||
|
|
||
| revive: | ||
| severity: error | ||
| enable-all-rules: false | ||
| confidence: 0.5 | ||
| rules: | ||
| # There are MANY rules you could enable... | ||
| # See https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md | ||
| # And https://golangci-lint.run/usage/linters/#revive | ||
| - name: line-length-limit | ||
| severity: error | ||
| arguments: [160] | ||
| - name: line-length-limit | ||
| arguments: | ||
| - 160 | ||
| severity: error | ||
| tagliatelle: | ||
| case: | ||
| rules: | ||
| json: goCamel | ||
| yaml: goCamel | ||
| use-field-name: true | ||
| exclusions: | ||
| generated: lax | ||
| presets: | ||
| - comments | ||
| - common-false-positives | ||
| - legacy | ||
| - std-error-handling | ||
| paths: | ||
| - third_party$ | ||
| - builtin$ | ||
| - examples$ | ||
| formatters: | ||
| enable: | ||
| - gofmt | ||
| exclusions: | ||
| generated: lax | ||
| paths: | ||
| - third_party$ | ||
| - builtin$ | ||
| - examples$ |
This file contains hidden or 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 hidden or 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.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.