-
Couldn't load subscription status.
- Fork 2
Release 0.9 backport #110
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
Open
alexr-bq
wants to merge
15
commits into
main
Choose a base branch
from
release-0.9-cherry-pick
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Release 0.9 backport #110
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
f16ad24
fix: Update version input description and remove v prefix to create v…
jbrinkman d66c8ad
Add comprehensive test coverage reporting infrastructure (#33)
jbrinkman 1ee2404
Updated attribution files for commit 860161ca6a8084831dd93e5d21bd7583…
github-actions[bot] ee315d0
Updated attribution files for branch `release-0.9` (#75)
github-actions[bot] d9a9e02
Ignore StackExchange.Redis version updates in Dependabot (#77)
jbrinkman 49d8844
HFE Commands (#63)
edlng c230218
Updated attribution files for branch `release-0.9` (#78)
github-actions[bot] 70221df
CI: Nightly matrix failure reporter (artifacts + workflow_run aggrega…
jbrinkman 9b0850a
chore: update submodule link
jbrinkman 4693504
docs(agents): add AGENTS.md for agentic tools
jbrinkman 6bc9ad0
docs(agents): add folder descriptions under Project Structure
jbrinkman b2534a6
Updated attribution files for commit 769f95df45278ca3124dd4021af552e1…
github-actions[bot] 9760349
Update developer md (#66)
alexr-bq 138d922
chore(submodule): update valkey-glide to tag v2.1.0
jbrinkman 04b5823
Updated attribution files for branch `release-0.9` (#87)
github-actions[bot] 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,9 @@ | ||
| [ | ||
| { | ||
| "type": "valkey", | ||
| "version": "9.0", | ||
| "run": "always" | ||
| }, | ||
| { | ||
| "type": "valkey", | ||
| "version": "8.1", | ||
|
|
||
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 |
|---|---|---|
| @@ -0,0 +1,55 @@ | ||
| name: "Run Coverage" | ||
| description: "Run code coverage collection and upload artifacts" | ||
| outputs: | ||
| line-coverage: | ||
| description: "Line coverage percentage" | ||
| value: ${{ steps.extract-coverage.outputs.line-coverage }} | ||
| branch-coverage: | ||
| description: "Branch coverage percentage" | ||
| value: ${{ steps.extract-coverage.outputs.branch-coverage }} | ||
| runs: | ||
| using: "composite" | ||
| steps: | ||
| - name: Install Task | ||
| shell: bash | ||
| run: | | ||
| sh -c "$(curl --location https://taskfile.dev/install.sh)" -- -d -b /usr/local/bin | ||
|
|
||
| - name: Install reportgenerator | ||
| shell: bash | ||
| run: | | ||
| dotnet tool install --global dotnet-reportgenerator-globaltool --version 5.4.12 | ||
|
|
||
| - name: Build and run coverage | ||
| shell: bash | ||
| run: | | ||
| task coverage FRAMEWORK=net8.0 | ||
|
|
||
| - name: Extract coverage metrics | ||
| id: extract-coverage | ||
| shell: bash | ||
| run: | | ||
| if [ -f "reports/Summary.json" ]; then | ||
| LINE_COVERAGE=$(cat reports/Summary.json | jq -r '.summary.linecoverage') | ||
| BRANCH_COVERAGE=$(cat reports/Summary.json | jq -r '.summary.branchcoverage') | ||
| echo "line-coverage=${LINE_COVERAGE}" >> $GITHUB_OUTPUT | ||
| echo "branch-coverage=${BRANCH_COVERAGE}" >> $GITHUB_OUTPUT | ||
| echo "=== Coverage Summary ===" | ||
| echo "Line Coverage: ${LINE_COVERAGE}%" | ||
| echo "Branch Coverage: ${BRANCH_COVERAGE}%" | ||
| else | ||
| echo "No coverage summary found." | ||
| exit 1 | ||
| fi | ||
|
|
||
| - name: Upload coverage report artifact | ||
| uses: actions/upload-artifact@v4 | ||
| with: | ||
| name: coverage-report | ||
| path: reports/ | ||
|
|
||
| - name: Upload coverage results artifact | ||
| uses: actions/upload-artifact@v4 | ||
| with: | ||
| name: test-results | ||
| path: testresults/ |
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 |
|---|---|---|
|
|
@@ -31,6 +31,9 @@ x64/ | |
| [Tt]est[Rr]esult*/ | ||
| [Bb]uild[Ll]og.* | ||
|
|
||
| # Code Coverage Reports | ||
| [Rr]eports/ | ||
|
|
||
| *_i.c | ||
| *_p.c | ||
| *_i.h | ||
|
|
||
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.
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.
You have some merge issues here. You should just pull over the full file from the 0.9 branch as it is the latest version. The main branch was there just for testing purposes, but the 0.9 branch is the correct version. This is a new file that I added in the 0.9 release, so it should have no changes in main that conflict.
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.
Oops, I think I resolved this then it didn't get committed somehow. I'll do as you say and just use the full file from the 0.9 branch.