File tree 1 file changed +10
-2
lines changed
1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change 27
27
jobs :
28
28
build-test-lint-linux :
29
29
name : Linux - FFmpeg ${{ matrix.ffmpeg.version }} - build, test and lint
30
- runs-on : ubuntu-22.04
30
+ runs-on : ubuntu-latest
31
31
32
32
strategy :
33
33
matrix :
@@ -187,7 +187,7 @@ jobs:
187
187
run : cargo test $CARGO_FEATURES
188
188
189
189
msrv :
190
- runs-on : ubuntu-22.04
190
+ runs-on : ubuntu-latest
191
191
192
192
steps :
193
193
- uses : actions/checkout@v4
@@ -209,5 +209,13 @@ jobs:
209
209
210
210
- name : Use predefined lockfile
211
211
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
212
220
- name : Run cargo check
213
221
run : cargo check --locked $CARGO_FEATURES
You can’t perform that action at this time.
0 commit comments