You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Tests are compiled first to include debug info, which is skipped in regular `go test`.
520
520
- run: cd go && CGO_CFLAGS="-I$(pwd)/../capi/include" CGO_LDFLAGS="-L$(pwd)/../target/debug" go test -v -c -o /tmp/test . && LD_LIBRARY_PATH=$(pwd)/../target/debug /tmp/test -test.v
521
+
deps:
522
+
name: Check for duplicate dependencies
523
+
runs-on: ubuntu-latest
524
+
steps:
525
+
- uses: actions/checkout@v6
526
+
- uses: dtolnay/rust-toolchain@stable
527
+
- shell: bash
528
+
run: |
529
+
out=$(cargo tree --quiet --duplicates --edges normal 2> /dev/null)
0 commit comments