-
-
Notifications
You must be signed in to change notification settings - Fork 0
Improve coverage #109
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
Improve coverage #109
Changes from all commits
22b2fd1
274a43e
f795afe
a6053b6
f40f5be
94c3e17
0a6df12
bef9a9b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -3,7 +3,7 @@ | |
|
|
||
| module github.com/AlphaOne1/dmorph | ||
|
|
||
| go 1.25 | ||
| go 1.25.0 | ||
|
|
||
| require ( | ||
| github.com/stretchr/testify v1.11.1 | ||
|
|
@@ -24,16 +24,15 @@ require ( | |
| github.com/ncruces/go-strftime v1.0.0 // indirect | ||
| github.com/pmezard/go-difflib v1.0.0 // indirect | ||
| github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect | ||
| golang.org/x/exp v0.0.0-20251023183803-a4bb9ffd2546 // indirect | ||
| golang.org/x/mod v0.29.0 // indirect | ||
| golang.org/x/sync v0.17.0 // indirect | ||
| golang.org/x/sys v0.37.0 // indirect | ||
| golang.org/x/mod v0.33.0 // indirect | ||
| golang.org/x/sync v0.19.0 // indirect | ||
| golang.org/x/sys v0.42.0 // indirect | ||
| golang.org/x/term v0.35.0 // indirect | ||
| golang.org/x/text v0.17.0 // indirect | ||
| golang.org/x/tools v0.38.0 // indirect | ||
| golang.org/x/tools v0.42.0 // indirect | ||
| gopkg.in/yaml.v3 v3.0.1 // indirect | ||
| gotest.tools/gotestsum v1.13.0 // indirect | ||
| modernc.org/libc v1.67.6 // indirect | ||
| modernc.org/libc v1.69.0 // indirect | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧩 Analysis chain🏁 Script executed: #!/bin/bash
set -euo pipefail
repo_libc="$(
sed -n 's/^[[:space:]]*modernc\.org\/libc[[:space:]]\+\(v[^[:space:]]\+\).*/\1/p' go.mod
)"
sqlite_libc="$(
curl -fsSL https://proxy.golang.org/modernc.org/sqlite/@v/v1.46.1.mod \
| sed -n 's/^[[:space:]]*modernc\.org\/libc[[:space:]]\+\(v[^[:space:]]\+\).*/\1/p'
)"
printf 'repo go.mod modernc.org/libc: %s\n' "$repo_libc"
printf 'modernc.org/sqlite@v1.46.1 expects: %s\n' "$sqlite_libc"
test -n "$repo_libc"
test -n "$sqlite_libc"
test "$repo_libc" = "$sqlite_libc"Repository: AlphaOne1/dmorph Length of output: 141 Downgrade The current pinned version 🤖 Prompt for AI Agents |
||
| modernc.org/mathutil v1.7.1 // indirect | ||
| modernc.org/memory v1.11.0 // indirect | ||
| ) | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.