Radish alpha
r
rad:z4V1sjrXqjvFdnCUbxPFqd5p4DtH5
Radicle web interface
Radicle
Git
http: Make the rust github workflow throw errors instead of warnings
Sebastian Martinez committed 1 year ago
commit 2bbcc2f9d1fd903bb10858ac360071309df8ea44
parent 9dd61d3
1 file changed +9 -3
modified .github/workflows/check-radicle-httpd.yml
@@ -16,6 +16,8 @@ jobs:
          workspaces: radicle-httpd -> target
      - name: Build
        run: cargo build --all-features
+
        env:
+
          RUSTFLAGS: -D warnings
      - name: Run tests
        run: cargo test --all-features
  docs:
@@ -31,7 +33,9 @@ jobs:
        with:
          workspaces: radicle-httpd -> target
      - name: Docs
-
        run: cargo doc --all --all-features
+
        run: cargo doc --all-features
+
        env:
+
          RUSTDOCFLAGS: -D warnings
  lint:
    name: Lint
    runs-on: ubuntu-latest
@@ -45,6 +49,8 @@ jobs:
        with:
          workspaces: radicle-httpd -> target
      - name: Run clippy
-
        run: cargo clippy --all --tests
+
        run: cargo clippy --tests
+
        env:
+
          RUSTFLAGS: -D warnings
      - name: Check formatting
-
        run: cargo fmt --all --check
+
        run: cargo fmt -- --check