Radish alpha
r
Radicle web interface
Radicle
Git (anonymous pull)
Log in to clone via SSH
http: Make the rust github workflow throw errors instead of warnings
Sebastian Martinez committed 1 year ago
commit 2bbcc2f9d1fd903bb10858ac360071309df8ea44
parent 9dd61d3bf37ac3dc9097b7ab736f5f9a8a8e452f
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