diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 84413b0..246111b 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -36,7 +36,15 @@ jobs: - name: Check daemon working-directory: mediarepo-daemon - run: cargo check --no-default-features + run: cargo check + + - name: Lint api + working-directory: mediarepo-api + run: cargo clippy -- -D warnings + + - name: Lint daemon + working-directory: mediarepo-daemon + run: cargo clippy -- -D warnings - name: Install UI dependencies working-directory: mediarepo-ui @@ -47,4 +55,4 @@ jobs: - name: Lint ui frontend working-directory: mediarepo-ui - run: yarn lint \ No newline at end of file + run: yarn lint