Skip to content

Commit d32e942

Browse files
committed
Add version checks for installed tools in CI workflow
This commit augments the CI workflow with additional echo statements to print the versions of rustc, cargo, protoc, and cargo-lambda. This helps in verifying the correct installation and version of these tools during the CI process.
1 parent 358f3f9 commit d32e942

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/rust.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@ jobs:
2424
# uses: dtolnay/rust-toolchain@stable
2525
- name: Check Rust version
2626
run: |
27+
echo "Installed rustc version:"
2728
rustc --version
29+
echo "Installed cargo version:"
2830
cargo --version
2931
3032
- name: Install Just
@@ -36,11 +38,13 @@ jobs:
3638
run: |
3739
sudo apt-get update
3840
sudo apt-get install -y protobuf-compiler
41+
echo "Installed protoc version:"
3942
protoc --version
4043
4144
- name: Install Cargo Lambda
4245
run: |
4346
pip3 install cargo-lambda
47+
echo "Installed cargo lambda version:"
4448
cargo lambda --version
4549
4650
- name: Clean with lambdas

0 commit comments

Comments
 (0)