From 4fce301f02c6a6c008635b4fcb2496375d85d294 Mon Sep 17 00:00:00 2001 From: Raffaele Ragni Date: Mon, 25 Sep 2023 19:57:57 +0200 Subject: [PATCH] optional checks --- .github/workflows/build.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 59bf64c..b72c714 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -22,9 +22,12 @@ jobs: run: sudo apt-get install -y libasound2-dev portaudio19-dev build-essential libpulse-dev libdbus-1-dev libudev-dev - name: "Checks" run: | - cargo fmt --check - cargo clippy --no-deps --tests -- -D warnings - cargo rustdoc -- -D warnings + #cargo fmt --check + #cargo clippy --no-deps --tests -- -D warnings + #cargo rustdoc -- -D warnings + - name: "Build" + run: | + cargo build - name: "Test" run: | cargo test --verbose