File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change 2727jobs :
2828 build-test-lint-linux :
2929 name : Linux - FFmpeg ${{ matrix.ffmpeg.version }} - build, test and lint
30- runs-on : ubuntu-22.04
30+ runs-on : ubuntu-latest
3131
3232 strategy :
3333 matrix :
@@ -187,7 +187,7 @@ jobs:
187187 run : cargo test $CARGO_FEATURES
188188
189189 msrv :
190- runs-on : ubuntu-22.04
190+ runs-on : ubuntu-latest
191191
192192 steps :
193193 - uses : actions/checkout@v4
@@ -209,5 +209,13 @@ jobs:
209209
210210 - name : Use predefined lockfile
211211 run : mv Cargo.lock.MSRV Cargo.lock
212+ - name : Debug dependencies
213+ run : |
214+ echo "=== Cargo Tree Output ==="
215+ cargo tree --locked
216+ echo "=== Detailed Dependency Resolution ==="
217+ cargo metadata --locked --format-version=1 | jq '.resolve.nodes[] | {id: .id, deps: .deps[].name}' || true
218+ echo "=== Package Dependencies ==="
219+ cargo metadata --locked --format-version=1 | jq '.packages[] | {name: .name, version: .version, dependencies: [.dependencies[].name]}' || true
212220 - name : Run cargo check
213221 run : cargo check --locked $CARGO_FEATURES
You can’t perform that action at this time.
0 commit comments