File tree Expand file tree Collapse file tree
src/s-core-devcontainer/test-project Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -16,6 +16,13 @@ check "validate clang-format is working and has the correct version" bash -c "cl
1616check " validate clang-tidy is working and has the correct version" bash -c " clang-tidy --version | grep '20.1.8'"
1717check " validate clang is working and has the correct version" bash -c " clang --version | grep '20.1.8'"
1818
19+ # Rust tooling
20+ check " validate rustc is working and has the correct version" bash -c " rustc --version | grep '1.83.0'"
21+ check " validate cargo is working and has the correct version" bash -c " cargo --version | grep '1.83.0'"
22+ check " validate cargo clippy is working and has the correct version" bash -c " cargo clippy --version | grep '0.1.83'"
23+ check " validate rustfmt is working and has the correct version" bash -c " rustfmt --version | grep '1.8.0-stable'"
24+ check " validate rust-analyzer is working and has the correct version" bash -c " rust-analyzer --version | grep '1.83.0'"
25+
1926# Tests from the local s-core-local feature
2027source /devcontainer/features/s-core-local/tests/test_default.sh
2128
You can’t perform that action at this time.
0 commit comments