From 83aacde1954f635882b8327f1be5abcf777c90bb Mon Sep 17 00:00:00 2001 From: Alex Butler Date: Mon, 11 Nov 2024 16:26:13 +0000 Subject: [PATCH] CI: install libsodium-dev --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e46b646..c658e3c 100644 --- a/.github/workflows/ci.yml +++ a/.github/workflows/ci.yml @@ -13,6 +13,7 @@ profile: minimal toolchain: stable override: true + - run: sudo apt install -y libsodium-dev - run: cargo check test: @@ -25,6 +26,7 @@ profile: minimal toolchain: stable override: true + - run: sudo apt install -y libsodium-dev - run: cargo test fmt: @@ -51,4 +53,5 @@ toolchain: stable override: true components: clippy + - run: sudo apt install -y libsodium-dev - run: cargo clippy -- -D warnings -- rgit 0.1.3