We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ad93ab commit f62f939Copy full SHA for f62f939
.github/workflows/rust.yml
@@ -67,18 +67,21 @@ jobs:
67
env:
68
SYSTEM_DEPS_DAV1D_BUILD_INTERNAL: always
69
clippy:
70
- runs-on: ubuntu-latest
+ runs-on: ubuntu-20.04
71
steps:
72
+ - name: install-dependencies
73
+ run: sudo apt update && sudo apt install ninja-build meson nasm
74
- uses: actions/checkout@v2
75
- uses: actions-rs/toolchain@v1
76
with:
77
toolchain: stable
78
override: true
79
components: clippy
- - name: Run clippy check
- uses: actions-rs/cargo@v1
80
+ - uses: actions-rs/cargo@v1
81
- command: clippy
82
+ args: clippy --all-features -- -D warnings
83
+ env:
84
+ SYSTEM_DEPS_DAV1D_BUILD_INTERNAL: always
85
build_fuzz_afl:
86
name: "Fuzz targets (afl)"
87
runs-on: ubuntu-latest
0 commit comments