From dabda42f34cd67669f9c244659d580801d271191 Mon Sep 17 00:00:00 2001 From: Finn Bear Date: Tue, 24 Sep 2024 16:17:01 -0700 Subject: [PATCH] More tests in CI. --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6ac9cc0..a4c861d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -39,10 +39,10 @@ jobs: components: rustfmt, clippy - name: Download Testing Data run: curl https://raw.githubusercontent.com/vzhou842/profanity-check/master/profanity_check/data/clean_data.csv --output test.csv - - name: Test (context) - run: cargo test --release --features context + - name: Test (context, pii, serde) + run: cargo test --release --features context,pii,serde - name: Test (context, width) - run: cargo test --release --features context, width + run: cargo test --release --features context,width - name: Add wasm32 target run: rustup target add wasm32-unknown-unknown - name: Install Trunk