fix: rustup ci
CI / Check (push) Successful in 12m44s
CI / Format (push) Failing after 54s
CI / Clippy (push) Failing after 6m50s
CI / Test (push) Failing after 7m18s

This commit is contained in:
Guillaume GRABÉ
2026-06-08 22:27:54 +02:00
parent 79be7c9d47
commit 6400518beb
+4
View File
@@ -29,6 +29,8 @@ jobs:
steps: steps:
- name: Install system deps - name: Install system deps
run: apt-get update && apt-get install -y --no-install-recommends git nodejs run: apt-get update && apt-get install -y --no-install-recommends git nodejs
- name: Install rustfmt
run: rustup component add rustfmt
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- run: cargo fmt --all -- --check - run: cargo fmt --all -- --check
@@ -39,6 +41,8 @@ jobs:
steps: steps:
- name: Install system deps - name: Install system deps
run: apt-get update && apt-get install -y --no-install-recommends protobuf-compiler libprotobuf-dev git ca-certificates nodejs run: apt-get update && apt-get install -y --no-install-recommends protobuf-compiler libprotobuf-dev git ca-certificates nodejs
- name: Install clippy
run: rustup component add clippy
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2 - uses: Swatinem/rust-cache@v2
- run: cargo clippy --workspace -- -D warnings - run: cargo clippy --workspace -- -D warnings