From 3b05e9a8aecfa43af959a670d9d21daf7d7e8380 Mon Sep 17 00:00:00 2001 From: Richard Carson Date: Tue, 12 Nov 2024 12:05:11 -0500 Subject: [PATCH] Remove obsolete test --- .github/workflows/linter.yml | 26 +------------------------- 1 file changed, 1 insertion(+), 25 deletions(-) diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index b493829..7b16561 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -34,28 +34,4 @@ jobs: # Test documentation generation - name: Test documentation - run: cargo doc --features snapshot_builder - - # Confirm sandbox integrity from features - - name: Confirm sandbox integrity - run: | - # Set up variables - forbidden=("cache", "io", "web", "webstorage", "websocket", "all", "fs_import", "url_import") - output=$(cargo rustc -- --print cfg) - found_forbidden=0 - - # Check for forbidden features in the default set - for feature in "${forbidden[@]}"; do - flagtext="feature=\"$feature\"" - if echo "$output" | grep -q "$flagtext"; then - echo "Error: $flagtext in default features" - found_forbidden=1 - fi - done - - # Finish up - if [ $found_forbidden -eq 0 ]; then - exit 0 - else - exit 1 - fi \ No newline at end of file + run: cargo doc --features snapshot_builder \ No newline at end of file