Skip to content

Commit 3b05e9a

Browse files
committed
Remove obsolete test
1 parent 1b85594 commit 3b05e9a

File tree

1 file changed

+1
-25
lines changed

1 file changed

+1
-25
lines changed

.github/workflows/linter.yml

Lines changed: 1 addition & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -34,28 +34,4 @@ jobs:
3434

3535
# Test documentation generation
3636
- name: Test documentation
37-
run: cargo doc --features snapshot_builder
38-
39-
# Confirm sandbox integrity from features
40-
- name: Confirm sandbox integrity
41-
run: |
42-
# Set up variables
43-
forbidden=("cache", "io", "web", "webstorage", "websocket", "all", "fs_import", "url_import")
44-
output=$(cargo rustc -- --print cfg)
45-
found_forbidden=0
46-
47-
# Check for forbidden features in the default set
48-
for feature in "${forbidden[@]}"; do
49-
flagtext="feature=\"$feature\""
50-
if echo "$output" | grep -q "$flagtext"; then
51-
echo "Error: $flagtext in default features"
52-
found_forbidden=1
53-
fi
54-
done
55-
56-
# Finish up
57-
if [ $found_forbidden -eq 0 ]; then
58-
exit 0
59-
else
60-
exit 1
61-
fi
37+
run: cargo doc --features snapshot_builder

0 commit comments

Comments
 (0)